Add builtins for object and es7 string

This commit is contained in:
Brian Ng 2016-12-02 15:55:02 -06:00 committed by Henry Zhu
parent 99c078e92a
commit 4d40b6ab5b
2 changed files with 14 additions and 1 deletions

View File

@ -110,5 +110,8 @@ module.exports = {
"es6.math.sign": "Math methods / Math.sign",
"es6.math.sinh": "Math methods / Math.sinh",
"es6.math.tanh": "Math methods / Math.tanh",
"es6.math.trunc": "Math methods / Math.trunc"
"es6.math.trunc": "Math methods / Math.trunc",
"es7.string.pad-start": "String padding / String.prototype.padStart",
"es7.string.pad-end": "String padding / String.prototype.padEnd"
};

View File

@ -712,5 +712,15 @@
"safari": 7,
"node": 0.12,
"ios": 10
},
"es7.string.pad-start": {
"firefox": 48,
"safari": 10,
"ios": 10
},
"es7.string.pad-end": {
"firefox": 48,
"safari": 10,
"ios": 10
}
}