SIGN IN SIGN UP
Unitech / pm2 UNCLAIMED

Node.js Production Process Manager with a built-in Load Balancer.

43015 0 4 JavaScript
2013-12-22 17:09:46 +01:00
var assert = require('assert')
, s = new Set()
;
s.add('a');
assert.ok(s.has('a'));
setInterval(function() {
console.log(s.has('a'));
}, 1000);