enumy:用于从字符串数组制作枚举的微型 npm 模块

时间:2024-07-15 16:29:50
【文件属性】:

文件名称:enumy:用于从字符串数组制作枚举的微型 npm 模块

文件大小:3KB

文件格式:ZIP

更新时间:2024-07-15 16:29:50

JavaScript

枚举 一个用于创建基本枚举的小型 npm 模块。 用法 var enumy = require ( 'enumy' ) ; var Planets = enumy ( 'PLANET_MERCURY' , 'PLANET_VENUS' , 'PLANET_EARTH' , 'PLANET_MARS' , 'PLANET_JUPITER' , 'PLANET_SATURN' , 'PLANET_URANUS' , 'PLANET_NEPTUNE' ) ; console . log ( Planets . PLANET_MERCURY ) ; // #=> 'PLANET_MERCURY' 一种常见的模式是将枚举作为模块公开。 为此,只需添加: module . exports = Planets 到上面的文件,然后你


【文件预览】:
enumy-master
----package.json(507B)
----LICENSE(1KB)
----src()
--------enumy.js(323B)
----.gitignore(587B)
----README.md(594B)

网友评论