欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Node.js的Hashish模块 博客分类: nodejs,hashish hash 

程序员文章站 2024-03-18 17:27:58
...

hashish包含了很多数据结构操作功能。

var Hash = require('hashish');

Hash({ a : 1, b : 2, c : 3, d : 4 })
.map(function (x) { return x * 10 })
.filter(function (x) { return x < 30 })
.forEach(function (x, key) {
console.log(key + ' => ' + x);
})
;

 

 流程:

Hash构造是{ a : 1, b : 2, c : 3, d : 4 };>>Hash值乘以10,hash结构{ a : 10, b : 20, c : 30, d : 40 }>>去掉小于30的>>forEach遍历输出。

得到

 
a => 10
b => 20

 hashish可以以链接的形式加到hash上

 
var Hash = require('hashish');
var obj = { a : 1, b : 2, c : 3, d : 4 };

var mapped = Hash.map(obj, function (x) {
return x * 10
});

console.dir(mapped);

 hash输出的值乘以10

 

{ a: 10, b: 20, c: 30, d: 40 }

 

相关标签: hash