StringMap简单的javascript StringMap类。 安装节点npm install string-map --save 浏览器用法
Node.js用法
var StringMap = require('string-map');
var map = new StringMap();
map.set('one', 1);
map.set('two', 2);
// 或
map.set({ one: 1, two: 2 });
map.get('one'); // => 1
map.exists('one'); // => true
暂无评论