@adviser/cement 0.2.32 → 0.2.33
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/index.cjs +3 -0
- package/index.cjs.map +1 -1
- package/index.d.cts +1 -0
- package/index.d.ts +1 -0
- package/index.js +8 -5
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/src/jsr.json +1 -1
- package/src/uri.ts +4 -0
- package/ts/uri.d.ts +1 -0
- package/ts/uri.d.ts.map +1 -1
- package/ts/uri.js +3 -0
- package/ts/uri.js.map +1 -1
- package/ts/uri.test.js +8 -1
- package/ts/uri.test.js.map +1 -1
package/index.cjs
CHANGED
|
@@ -1459,6 +1459,9 @@ var URI = class _URI {
|
|
|
1459
1459
|
getParamResult(key, msgFn) {
|
|
1460
1460
|
return getParamResult(key, this.getParam(key), msgFn);
|
|
1461
1461
|
}
|
|
1462
|
+
getParamsResult(...keys) {
|
|
1463
|
+
return getParamsResult(keys, this);
|
|
1464
|
+
}
|
|
1462
1465
|
clone() {
|
|
1463
1466
|
return new _URI(this._url);
|
|
1464
1467
|
}
|