@lazy-cjk/util
Advanced tools
Comparing version 1.0.19 to 1.0.20
@@ -6,2 +6,12 @@ # Change Log | ||
## [1.0.20](https://github.com/bluelovers/ws-regexp/compare/@lazy-cjk/util@1.0.19...@lazy-cjk/util@1.0.20) (2024-08-24) | ||
### 🛠 Build System | ||
* update build ([ce24c2b](https://github.com/bluelovers/ws-regexp/commit/ce24c2bae947f88098fe6501eb117ae74a331149)) | ||
## [1.0.19](https://github.com/bluelovers/ws-regexp/compare/@lazy-cjk/util@1.0.18...@lazy-cjk/util@1.0.19) (2024-01-29) | ||
@@ -8,0 +18,0 @@ |
{ | ||
"name": "@lazy-cjk/util", | ||
"version": "1.0.19", | ||
"version": "1.0.20", | ||
"description": "", | ||
@@ -89,3 +89,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "3da68f8abe92eaa77bb13b8cc1b852b1f831c735" | ||
"gitHead": "7804fe06cda102a7912e0955e38fd02687a1dd0f" | ||
} |
@@ -6,3 +6,6 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.utf8Split = exports.jsSplit = exports.toStrTable = exports.toStrTableArray = void 0; | ||
exports.toStrTableArray = toStrTableArray; | ||
exports.toStrTable = toStrTable; | ||
exports.jsSplit = jsSplit; | ||
exports.utf8Split = utf8Split; | ||
const uni_string_1 = require("uni-string"); | ||
@@ -43,3 +46,2 @@ function toStrTableArray(table, options = {}) { | ||
} | ||
exports.toStrTableArray = toStrTableArray; | ||
function toStrTable(table, options) { | ||
@@ -52,12 +54,9 @@ let { from, to, } = toStrTableArray(table, options); | ||
} | ||
exports.toStrTable = toStrTable; | ||
function jsSplit(s) { | ||
return s.split(''); | ||
} | ||
exports.jsSplit = jsSplit; | ||
function utf8Split(s) { | ||
return uni_string_1.UString.split(s, ''); | ||
} | ||
exports.utf8Split = utf8Split; | ||
exports.default = exports; | ||
//# sourceMappingURL=strtable.js.map |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15217
100