-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.js
26 lines (21 loc) · 859 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { HyperFormula, AlwaysDense } from 'hyperformula';
// new way
import { enUS } from "hyperformula/i18n/languages";
import frFR from "hyperformula/i18n/languages/frFR";
// legacy way
import { csCZ } from "hyperformula/es/i18n/languages";
import daDK from "hyperformula/es/i18n/languages/daDK";
import deDE from "hyperformula/es/i18n/languages/deDE.js";
console.log(HyperFormula != null);
console.log(AlwaysDense != null);
console.log(enUS != null);
console.log(frFR != null);
console.log(csCZ != null);
console.log(daDK != null);
console.log(deDE != null);
HyperFormula.registerLanguage('enUS', enUS);
HyperFormula.registerLanguage('frFR', frFR);
HyperFormula.registerLanguage('csCZ', csCZ);
HyperFormula.registerLanguage('daDK', daDK);
HyperFormula.registerLanguage('deDE', deDE);
// npm i --registry http://localhost:4873 [email protected]