mirror of
https://github.com/nodejs/node.git
synced 2025-05-21 08:57:07 +00:00

The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
6 lines
141 B
JavaScript
6 lines
141 B
JavaScript
'use strict';
|
|
|
|
// the sys module was renamed to 'util'.
|
|
// this shim remains to keep old programs working.
|
|
module.exports = require('util');
|