UNPKG

compound-ex4

Version:

Compound-ex4 - MVC framework for NodeJS (ExpressJs 4 version), fork compoundjs(https://github.com/1602/compound)

23 lines (18 loc) 684 B
'use strict'; module.exports = function (T, a) { var x = {}, y = {}, z = {}, arr = [[x, 'raz'], [y, 'dwa']], map = new T(arr); a(map instanceof T, true, "WeakMap"); a(map.has(x), true, "Has: true"); a(map.get(x), 'raz', "Get: contains"); a(map.has(z), false, "Has: false"); a(map.get(z), undefined, "Get: doesn't contain"); a(map.set(z, 'trzy'), map, "Set: return"); a(map.has(z), true, "Add"); a(map.delete({}), false, "Delete: false"); a(map.delete(x), true, "Delete: true"); a(map.get(x), undefined, "Get: after delete"); a(map.has(x), false, "Has: after delete"); a(map.has(y), true, "Has: pre clear"); map.clear(); a(map.has(y), false, "Has: after clear"); };