@ray-js/library 1.6.0-beta.9 → 1.6.1
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/lib/url/format.js
CHANGED
package/lib/url/parse.js
CHANGED
|
@@ -2,6 +2,9 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
|
2
2
|
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
3
|
const _excluded = ["pathname"],
|
|
4
4
|
_excluded2 = ["____h_a_s_h____"];
|
|
5
|
+
import "core-js/modules/es.regexp.exec.js";
|
|
6
|
+
import "core-js/modules/esnext.iterator.constructor.js";
|
|
7
|
+
import "core-js/modules/esnext.iterator.for-each.js";
|
|
5
8
|
import { NamedRegexp } from '../regexp';
|
|
6
9
|
import searchParse from './searchParse';
|
|
7
10
|
import format from './format';
|
package/lib/url/searchParse.js
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
import "core-js/modules/es.regexp.exec.js";
|
|
1
2
|
import "core-js/modules/es.string.replace.js";
|
|
3
|
+
import "core-js/modules/esnext.iterator.constructor.js";
|
|
4
|
+
import "core-js/modules/esnext.iterator.for-each.js";
|
|
2
5
|
import "core-js/modules/web.dom-collections.iterator.js";
|
|
3
6
|
/**
|
|
4
7
|
* 分割url search key value,返回 [key, value]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ray-js/library",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "Ray library for browser",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ray"
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"merge": "^2.1.1"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@ray-js/cli": "
|
|
29
|
+
"@ray-js/cli": "1.6.1"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public",
|
|
33
|
-
"registry": "https://registry.npmjs.
|
|
33
|
+
"registry": "https://registry.npmjs.com"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "cb6ffc5dc0ace4c698bf12ab2102420550964a7d"
|
|
36
36
|
}
|