es6-class:ES6 类编译为 ES5

时间:2024-07-23 15:19:43
【文件属性】:

文件名称:es6-class:ES6 类编译为 ES5

文件大小:17KB

文件格式:ZIP

更新时间:2024-07-23 15:19:43

JavaScript

es6级 编译使用 ES6 类编写的 JavaScript 以使用与 ES5 兼容的函数语法。 例如,这个: class Person { constructor ( firstName , lastName ) { this . firstName = firstName ; this . lastName = lastName ; } get name ( ) { return this . firstName + ' ' + this . lastName ; } toString ( ) { return this . name ; } } 编译为与Person作为函数等效的函数。 有关行为和生成的 JavaScript 的更多信息,请参阅。 有关建议语法的更多信息,请参阅的。 安装 $ npm install es


【文件预览】:
es6-class-master
----bower.json(370B)
----lib()
--------index.js(17KB)
----.travis.yml(49B)
----LICENSE(555B)
----test()
--------runner.js(1KB)
--------examples()
----README.md(2KB)
----.gitignore(27B)
----bin()
--------es6-class(1KB)
----CHANGELOG.md(2KB)
----package.json(690B)

网友评论