babel-source 5.1.3 → 5.1.4
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.
- checksums.yaml +8 -8
- data/lib/babel.js +27 -2
- data/lib/babel/source.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NDUwNTUwNTYyYjA1YTM5ZTMyMDJhYTc5ZGFhMmU3M2E5ZWNjMmY0Mw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
Mjc3ZTNhMGFiOWI5YjZiMWIwYzFiYmZmMTkwNmM4ZGZkYTc0MTAxZQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MTI1MWM1OTJlODY4MzQ0Y2E2NjI3Y2Q4NTY4MzMzM2IxYjc4NWY3MzYzNTBj
|
10
|
+
NGU5MDU2YzAzZTg4ZTYxNjZlZGFhY2FiZWM1YzJmZDEyMDdkYTY5MmNlMDk0
|
11
|
+
ODQyYWYyYmQ2OGJhMDNlNWZlM2ZiYTkxM2YxYjRkMjY4NWQxMDI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
N2JiN2EzODE2ZjAxZTAwNzc2YWI1N2NkOTkzMTdlOGZkNjYwNDg0YzU0ZGQ4
|
14
|
+
MjE1N2I4NmU4Mjc1ZTBjMDIzMTYwNGNjNzNiOThlMmQxMDI2ZmJmYzQ5MTg0
|
15
|
+
MGU4MWM5YmE4ZGE4MGI1M2NhNGNmNTcxNmE4MjdiMWNkODUwMjM=
|
data/lib/babel.js
CHANGED
@@ -16463,6 +16463,7 @@ module.exports={
|
|
16463
16463
|
"unshift": "array/unshift",
|
16464
16464
|
"values": "array/values"
|
16465
16465
|
},
|
16466
|
+
|
16466
16467
|
"Object": {
|
16467
16468
|
"assign": "object/assign",
|
16468
16469
|
"classof": "object/classof",
|
@@ -16487,13 +16488,16 @@ module.exports={
|
|
16487
16488
|
"setPrototypeOf": "object/set-prototype-of",
|
16488
16489
|
"values": "object/values"
|
16489
16490
|
},
|
16491
|
+
|
16490
16492
|
"RegExp": {
|
16491
16493
|
"escape": "regexp/escape"
|
16492
16494
|
},
|
16495
|
+
|
16493
16496
|
"Function": {
|
16494
16497
|
"only": "function/only",
|
16495
16498
|
"part": "function/part"
|
16496
16499
|
},
|
16500
|
+
|
16497
16501
|
"Math": {
|
16498
16502
|
"acosh": "math/acosh",
|
16499
16503
|
"asinh": "math/asinh",
|
@@ -16514,11 +16518,13 @@ module.exports={
|
|
16514
16518
|
"tanh": "math/tanh",
|
16515
16519
|
"trunc": "math/trunc"
|
16516
16520
|
},
|
16521
|
+
|
16517
16522
|
"Date": {
|
16518
16523
|
"addLocale": "date/add-locale",
|
16519
16524
|
"formatUTC": "date/format-utc",
|
16520
16525
|
"format": "date/format"
|
16521
16526
|
},
|
16527
|
+
|
16522
16528
|
"Symbol": {
|
16523
16529
|
"for": "symbol/for",
|
16524
16530
|
"hasInstance": "symbol/for-instance",
|
@@ -16534,6 +16540,7 @@ module.exports={
|
|
16534
16540
|
"toStringTag": "symbol/to-string-tag",
|
16535
16541
|
"unscopables": "symbol/unscopables"
|
16536
16542
|
},
|
16543
|
+
|
16537
16544
|
"String": {
|
16538
16545
|
"at": "string/at",
|
16539
16546
|
"codePointAt": "string/code-point-at",
|
@@ -16546,8 +16553,9 @@ module.exports={
|
|
16546
16553
|
"startsWith": "string/starts-with",
|
16547
16554
|
"unescapeHTML": "string/unescape-html"
|
16548
16555
|
},
|
16556
|
+
|
16549
16557
|
"Number": {
|
16550
|
-
"
|
16558
|
+
"EPSILON": "number/epsilon",
|
16551
16559
|
"isFinite": "number/is-finite",
|
16552
16560
|
"isInteger": "number/is-integer",
|
16553
16561
|
"isNaN": "number/is-nan",
|
@@ -16557,6 +16565,23 @@ module.exports={
|
|
16557
16565
|
"parseFloat": "number/parse-float",
|
16558
16566
|
"parseInt": "number/parse-int",
|
16559
16567
|
"random": "number/random"
|
16568
|
+
},
|
16569
|
+
|
16570
|
+
"Reflect": {
|
16571
|
+
"apply": "reflect/apply",
|
16572
|
+
"construct": "reflect/construct",
|
16573
|
+
"defineProperty": "reflect/define-property",
|
16574
|
+
"deleteProperty": "reflect/delete-property",
|
16575
|
+
"enumerate": "reflect/enumerate",
|
16576
|
+
"getOwnPropertyDescriptor": "reflect/get-own-property-descriptor",
|
16577
|
+
"getPrototypeOf": "reflect/get-prototype-of",
|
16578
|
+
"get": "reflect/get",
|
16579
|
+
"has": "reflect/has",
|
16580
|
+
"isExtensible": "reflect/is-extensible",
|
16581
|
+
"ownKeys": "reflect/own-keys",
|
16582
|
+
"preventExtensions": "reflect/prevent-extensions",
|
16583
|
+
"setPrototypeOf": "reflect/set-prototype-of",
|
16584
|
+
"set": "reflect/set"
|
16560
16585
|
}
|
16561
16586
|
}
|
16562
16587
|
}
|
@@ -77362,7 +77387,7 @@ module.exports = function (str) {
|
|
77362
77387
|
module.exports={
|
77363
77388
|
"name": "babel-core",
|
77364
77389
|
"description": "Turn ES6 code into readable vanilla ES5 with source maps",
|
77365
|
-
"version": "5.1.
|
77390
|
+
"version": "5.1.4",
|
77366
77391
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
77367
77392
|
"homepage": "https://babeljs.io/",
|
77368
77393
|
"repository": "babel/babel",
|
data/lib/babel/source.rb
CHANGED