1'use strict'; 2require('sys'); // Builtin should not show up in module.children array. 3require('./b'); // This should. 4require('./b'); // This should not. 5module.exports = module.children.slice(); 6