1'use strict'; 2 3// Parallel assignment to the exported variable and module.exports. 4 5function ok() { 6} 7 8const asserts = module.exports = ok; 9 10asserts.ok = ok; 11 12asserts.strictEqual = function() { 13} 14