mirror of https://github.com/nodejs/node.git
14 lines
196 B
JavaScript
14 lines
196 B
JavaScript
|
'use strict';
|
||
|
|
||
|
// Parallel assignment to the exported variable and module.exports.
|
||
|
|
||
|
function ok() {
|
||
|
}
|
||
|
|
||
|
const asserts = module.exports = ok;
|
||
|
|
||
|
asserts.ok = ok;
|
||
|
|
||
|
asserts.strictEqual = function() {
|
||
|
}
|