@formatjs/ecma402-abstract 2.3.5 → 2.3.6

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,4 +1,5 @@
1
1
  /**
2
+ * Partition a pattern into a list of literals and placeholders
2
3
  * https://tc39.es/ecma402/#sec-partitionpattern
3
4
  * @param pattern
4
5
  */
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PartitionPattern = PartitionPattern;
4
4
  var utils_1 = require("./utils");
5
5
  /**
6
+ * Partition a pattern into a list of literals and placeholders
6
7
  * https://tc39.es/ecma402/#sec-partitionpattern
7
8
  * @param pattern
8
9
  */
@@ -1,4 +1,5 @@
1
1
  /**
2
+ * Partition a pattern into a list of literals and placeholders
2
3
  * https://tc39.es/ecma402/#sec-partitionpattern
3
4
  * @param pattern
4
5
  */
@@ -1,5 +1,6 @@
1
1
  import { invariant } from './utils';
2
2
  /**
3
+ * Partition a pattern into a list of literals and placeholders
3
4
  * https://tc39.es/ecma402/#sec-partitionpattern
4
5
  * @param pattern
5
6
  */
package/package.json CHANGED
@@ -1,15 +1,18 @@
1
1
  {
2
2
  "name": "@formatjs/ecma402-abstract",
3
3
  "description": "A collection of implementation for ECMAScript abstract operations",
4
- "version": "2.3.5",
4
+ "version": "2.3.6",
5
+ "license": "MIT",
5
6
  "author": "Long Ho <holevietlong@gmail.com",
6
- "bugs": "https://github.com/formatjs/formatjs/issues",
7
+ "sideEffects": false,
8
+ "types": "index.d.ts",
7
9
  "dependencies": {
8
- "@formatjs/fast-memoize": "2.2.7",
9
- "@formatjs/intl-localematcher": "0.6.2",
10
10
  "decimal.js": "^10.4.3",
11
- "tslib": "^2.8.0"
11
+ "tslib": "^2.8.0",
12
+ "@formatjs/intl-localematcher": "0.6.2",
13
+ "@formatjs/fast-memoize": "2.2.7"
12
14
  },
15
+ "bugs": "https://github.com/formatjs/formatjs/issues",
13
16
  "gitHead": "a7842673d8ad205171ad7c8cb8bb2f318b427c0c",
14
17
  "homepage": "https://github.com/formatjs/formatjs",
15
18
  "keywords": [
@@ -23,10 +26,7 @@
23
26
  "javascript",
24
27
  "relative"
25
28
  ],
26
- "license": "MIT",
27
29
  "main": "index.js",
28
30
  "module": "lib/index.js",
29
- "repository": "git@github.com:formatjs/formatjs.git",
30
- "sideEffects": false,
31
- "types": "index.d.ts"
31
+ "repository": "git@github.com:formatjs/formatjs.git"
32
32
  }