@jackens/nnn 2024.2.11 → 2024.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/eq.d.ts +1 -1
- package/eq.js +26 -26
- package/escape.d.ts +1 -1
- package/escape.js +2 -2
- package/fixTypography.d.ts +1 -1
- package/fixTypography.js +2 -2
- package/h.d.ts +5 -5
- package/h.js +29 -30
- package/has.d.ts +2 -2
- package/has.js +13 -13
- package/is.d.ts +2 -2
- package/is.js +27 -27
- package/jcss.d.ts +6 -6
- package/jcss.js +12 -12
- package/jsOnParse.d.ts +1 -1
- package/jsOnParse.js +2 -3
- package/locale.d.ts +1 -1
- package/locale.js +9 -9
- package/nanolightJs.d.ts +1 -1
- package/nanolightJs.js +2 -2
- package/nnn.d.ts +3 -1
- package/nnn.js +5 -1
- package/package.json +1 -1
- package/pick.d.ts +14 -0
- package/pick.js +57 -0
- package/plUral.d.ts +1 -1
- package/plUral.js +9 -9
- package/pro.d.ts +1 -1
- package/pro.js +7 -9
- package/readme.md +164 -130
- package/refsInfo.d.ts +2 -2
- package/refsInfo.js +4 -4
- package/uuid1.d.ts +3 -3
- package/uuid1.js +13 -13
- package/tests.d.ts +0 -30
- package/tests.js +0 -35
package/tests.js
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { tests as chartableTests } from './chartable.js'
|
|
2
|
-
import { tests as eqTests } from './eq.js'
|
|
3
|
-
import { tests as escapeTests } from './escape.js'
|
|
4
|
-
import { tests as fixTypographyTests } from './fixTypography.js'
|
|
5
|
-
import { tests as hTests } from './h.js'
|
|
6
|
-
import { tests as hasTests } from './has.js'
|
|
7
|
-
import { tests as isTests } from './is.js'
|
|
8
|
-
import { tests as jcssTests } from './jcss.js'
|
|
9
|
-
import { tests as jsOnParseTests } from './jsOnParse.js'
|
|
10
|
-
import { tests as localeTests } from './locale.js'
|
|
11
|
-
import { tests as nanolightTests } from './nanolight.js'
|
|
12
|
-
import { tests as nanolightJsTests } from './nanolightJs.js'
|
|
13
|
-
import { tests as plUralTests } from './plUral.js'
|
|
14
|
-
import { tests as proTests } from './pro.js'
|
|
15
|
-
import { tests as refsInfoTests } from './refsInfo.js'
|
|
16
|
-
import { tests as uuid1Tests } from './uuid1.js'
|
|
17
|
-
|
|
18
|
-
export const tests = {
|
|
19
|
-
...chartableTests,
|
|
20
|
-
...eqTests,
|
|
21
|
-
...escapeTests,
|
|
22
|
-
...fixTypographyTests,
|
|
23
|
-
...hTests,
|
|
24
|
-
...hasTests,
|
|
25
|
-
...isTests,
|
|
26
|
-
...jcssTests,
|
|
27
|
-
...jsOnParseTests,
|
|
28
|
-
...localeTests,
|
|
29
|
-
...nanolightTests,
|
|
30
|
-
...nanolightJsTests,
|
|
31
|
-
...plUralTests,
|
|
32
|
-
...proTests,
|
|
33
|
-
...refsInfoTests,
|
|
34
|
-
...uuid1Tests
|
|
35
|
-
}
|