@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.
@@ -1,3 +1,6 @@
1
+ import "core-js/modules/es.regexp.exec.js";
2
+ import "core-js/modules/esnext.iterator.constructor.js";
3
+ import "core-js/modules/esnext.iterator.reduce.js";
1
4
  /**
2
5
  * 实现 Named Groups RegExp 的正则百表达式
3
6
  * ECMA 2018 的实现
package/lib/url/format.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
2
+ import "core-js/modules/es.regexp.exec.js";
2
3
  import queryStringify from './queryStringify';
3
4
  import searchParse from './searchParse';
4
5
  export default function format(attrs) {
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';
@@ -1,3 +1,5 @@
1
+ import "core-js/modules/esnext.iterator.constructor.js";
2
+ import "core-js/modules/esnext.iterator.for-each.js";
1
3
  export default function queryStringify(query) {
2
4
  let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
3
5
  const {
@@ -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.0-beta.9",
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": "^1.6.0-beta.9"
29
+ "@ray-js/cli": "1.6.1"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public",
33
- "registry": "https://registry.npmjs.org"
33
+ "registry": "https://registry.npmjs.com"
34
34
  },
35
- "gitHead": "a63a269523887feb9d8dbdd42f6e3669e3aa3fc5"
35
+ "gitHead": "cb6ffc5dc0ace4c698bf12ab2102420550964a7d"
36
36
  }