12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**
- * @param {string} moduleName
- * @returns {?}
- */
- function require(moduleName) {};
- /**
- * @param {string} name
- * @param {Array.<string>} deps
- * @param {function(...[*])} f
- */
- function define(name, deps, f) {};
- /**
- * @param {number} size
- * @constructor
- * @extends Array
- */
- function Buffer(size) {};
- /**
- * @param {*} buf
- * @return {boolean}
- */
- Buffer.isBuffer = function(buf) {};
- /**
- * @type {Object.<string,*>}
- */
- var console = {};
- /**
- * @param {string} s
- */
- console.log = function(s) {};
- /**
- * @type {*}
- */
- var module = {};
- /**
- * @param {...*} var_args
- * @returns {string}
- */
- String.fromCodePoint = function(var_args) {};
- /**
- * @param {number} offset
- * @returns {number}
- */
- String.prototype.codePointAt = function(offset) {};
|