Sha256: 2226e4f65525c545ab45109879b16b2a92341b440178e75d3a9efb3ed10f7b03
Contents?: true
Size: 279 Bytes
Versions: 30
Compression:
Stored size: 279 Bytes
Contents
const assert = require('assert'); let next = null; exports.assert_next_undefined = function() { next = undefined; }; exports.assert_next_ten = function() { next = 10; }; exports.foo = function(a) { console.log(a, next); assert.strictEqual(a, next); next = null; };
Version data entries
30 entries across 30 versions & 1 rubygems