pepka 1.8.1 → 1.8.2
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/dist/bundle.cjs +1 -1
- package/dist/bundle.mjs +1 -1
- package/package.json +1 -1
- package/src/common.ts +1 -1
package/dist/bundle.cjs
CHANGED
|
@@ -97,7 +97,7 @@ const isObj = (s) => (!isNull(s) && to(s) === 'object');
|
|
|
97
97
|
const isNil = (s) => (isNull(s) || isUndef(s));
|
|
98
98
|
|
|
99
99
|
// It's faster that toUpperCase() !
|
|
100
|
-
const caseMap = { u: 'U', b: 'B', n: 'N', s: 'S', f: 'F' };
|
|
100
|
+
const caseMap = { u: 'U', b: 'B', n: 'N', s: 'S', f: 'F', o: 'O' };
|
|
101
101
|
const symbol = Symbol();
|
|
102
102
|
const toLower = (s) => s.toLowerCase();
|
|
103
103
|
const toUpper = (s) => s.toUpperCase();
|
package/dist/bundle.mjs
CHANGED
|
@@ -95,7 +95,7 @@ const isObj = (s) => (!isNull(s) && to(s) === 'object');
|
|
|
95
95
|
const isNil = (s) => (isNull(s) || isUndef(s));
|
|
96
96
|
|
|
97
97
|
// It's faster that toUpperCase() !
|
|
98
|
-
const caseMap = { u: 'U', b: 'B', n: 'N', s: 'S', f: 'F' };
|
|
98
|
+
const caseMap = { u: 'U', b: 'B', n: 'N', s: 'S', f: 'F', o: 'O' };
|
|
99
99
|
const symbol = Symbol();
|
|
100
100
|
const toLower = (s) => s.toLowerCase();
|
|
101
101
|
const toUpper = (s) => s.toUpperCase();
|
package/package.json
CHANGED
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"prod": "npm run gentypes && npm run prod:es && npm run prod:cjs",
|
|
42
42
|
"all": "npm run dev && npm run prod"
|
|
43
43
|
},
|
|
44
|
-
"version": "1.8.
|
|
44
|
+
"version": "1.8.2",
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@rollup/plugin-commonjs": "^29.0.2",
|
|
47
47
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
package/src/common.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { is_typed_arr } from "./internal"
|
|
|
3
3
|
import { isNull, isStr, to } from "./utils"
|
|
4
4
|
|
|
5
5
|
// It's faster that toUpperCase() !
|
|
6
|
-
const caseMap = { u: 'U', b: 'B', n: 'N', s: 'S', f: 'F' }
|
|
6
|
+
const caseMap = { u: 'U', b: 'B', n: 'N', s: 'S', f: 'F', o: 'O' }
|
|
7
7
|
|
|
8
8
|
export const symbol = Symbol()
|
|
9
9
|
export const toLower = (s: string) => s.toLowerCase()
|