react / wstein / node_modules / browserify / node_modules / timers-browserify / example / enroll / js / browserify.js
80540 viewsvar require = function (file, cwd) {1var resolved = require.resolve(file, cwd || '/');2var mod = require.modules[resolved];3if (!mod) throw new Error(4'Failed to resolve module ' + file + ', tried ' + resolved5);6var res = mod._cached ? mod._cached : mod();7return res;8}910require.paths = [];11require.modules = {};12require.extensions = [".js",".coffee"];1314require._core = {15'assert': true,16'events': true,17'fs': true,18'path': true,19'vm': true20};2122require.resolve = (function () {23return function (x, cwd) {24if (!cwd) cwd = '/';2526if (require._core[x]) return x;27var path = require.modules.path();28cwd = path.resolve('/', cwd);29var y = cwd || '/';3031if (x.match(/^(?:\.\.?\/|\/)/)) {32var m = loadAsFileSync(path.resolve(y, x))33|| loadAsDirectorySync(path.resolve(y, x));34if (m) return m;35}3637var n = loadNodeModulesSync(x, y);38if (n) return n;3940throw new Error("Cannot find module '" + x + "'");4142function loadAsFileSync (x) {43if (require.modules[x]) {44return x;45}4647for (var i = 0; i < require.extensions.length; i++) {48var ext = require.extensions[i];49if (require.modules[x + ext]) return x + ext;50}51}5253function loadAsDirectorySync (x) {54x = x.replace(/\/+$/, '');55var pkgfile = x + '/package.json';56if (require.modules[pkgfile]) {57var pkg = require.modules[pkgfile]();58var b = pkg.browserify;59if (typeof b === 'object' && b.main) {60var m = loadAsFileSync(path.resolve(x, b.main));61if (m) return m;62}63else if (typeof b === 'string') {64var m = loadAsFileSync(path.resolve(x, b));65if (m) return m;66}67else if (pkg.main) {68var m = loadAsFileSync(path.resolve(x, pkg.main));69if (m) return m;70}71}7273return loadAsFileSync(x + '/index');74}7576function loadNodeModulesSync (x, start) {77var dirs = nodeModulesPathsSync(start);78for (var i = 0; i < dirs.length; i++) {79var dir = dirs[i];80var m = loadAsFileSync(dir + '/' + x);81if (m) return m;82var n = loadAsDirectorySync(dir + '/' + x);83if (n) return n;84}8586var m = loadAsFileSync(x);87if (m) return m;88}8990function nodeModulesPathsSync (start) {91var parts;92if (start === '/') parts = [ '' ];93else parts = path.normalize(start).split('/');9495var dirs = [];96for (var i = parts.length - 1; i >= 0; i--) {97if (parts[i] === 'node_modules') continue;98var dir = parts.slice(0, i + 1).join('/') + '/node_modules';99dirs.push(dir);100}101102return dirs;103}104};105})();106107require.alias = function (from, to) {108var path = require.modules.path();109var res = null;110try {111res = require.resolve(from + '/package.json', '/');112}113catch (err) {114res = require.resolve(from, '/');115}116var basedir = path.dirname(res);117118var keys = (Object.keys || function (obj) {119var res = [];120for (var key in obj) res.push(key)121return res;122})(require.modules);123124for (var i = 0; i < keys.length; i++) {125var key = keys[i];126if (key.slice(0, basedir.length + 1) === basedir + '/') {127var f = key.slice(basedir.length);128require.modules[to + f] = require.modules[basedir + f];129}130else if (key === basedir) {131require.modules[to] = require.modules[basedir];132}133}134};135136require.define = function (filename, fn) {137var dirname = require._core[filename]138? ''139: require.modules.path().dirname(filename)140;141142var require_ = function (file) {143return require(file, dirname)144};145require_.resolve = function (name) {146return require.resolve(name, dirname);147};148require_.modules = require.modules;149require_.define = require.define;150var module_ = { exports : {} };151152require.modules[filename] = function () {153require.modules[filename]._cached = module_.exports;154fn.call(155module_.exports,156require_,157module_,158module_.exports,159dirname,160filename161);162require.modules[filename]._cached = module_.exports;163return module_.exports;164};165};166167if (typeof process === 'undefined') process = {};168169if (!process.nextTick) process.nextTick = (function () {170var queue = [];171var canPost = typeof window !== 'undefined'172&& window.postMessage && window.addEventListener173;174175if (canPost) {176window.addEventListener('message', function (ev) {177if (ev.source === window && ev.data === 'browserify-tick') {178ev.stopPropagation();179if (queue.length > 0) {180var fn = queue.shift();181fn();182}183}184}, true);185}186187return function (fn) {188if (canPost) {189queue.push(fn);190window.postMessage('browserify-tick', '*');191}192else setTimeout(fn, 0);193};194})();195196if (!process.title) process.title = 'browser';197198if (!process.binding) process.binding = function (name) {199if (name === 'evals') return require('vm')200else throw new Error('No such module')201};202203if (!process.cwd) process.cwd = function () { return '.' };204205if (!process.env) process.env = {};206if (!process.argv) process.argv = [];207208require.define("path", Function(209[ 'require', 'module', 'exports', '__dirname', '__filename' ],210"function filter (xs, fn) {\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n if (fn(xs[i], i, xs)) res.push(xs[i]);\n }\n return res;\n}\n\n// resolves . and .. elements in a path array with directory names there\n// must be no slashes, empty elements, or device names (c:\\) in the array\n// (so also no leading and trailing slashes - it does not distinguish\n// relative and absolute paths)\nfunction normalizeArray(parts, allowAboveRoot) {\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = parts.length; i >= 0; i--) {\n var last = parts[i];\n if (last == '.') {\n parts.splice(i, 1);\n } else if (last === '..') {\n parts.splice(i, 1);\n up++;\n } else if (up) {\n parts.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (allowAboveRoot) {\n for (; up--; up) {\n parts.unshift('..');\n }\n }\n\n return parts;\n}\n\n// Regex to split a filename into [*, dir, basename, ext]\n// posix version\nvar splitPathRe = /^(.+\\/(?!$)|\\/)?((?:.+?)?(\\.[^.]*)?)$/;\n\n// path.resolve([from ...], to)\n// posix version\nexports.resolve = function() {\nvar resolvedPath = '',\n resolvedAbsolute = false;\n\nfor (var i = arguments.length; i >= -1 && !resolvedAbsolute; i--) {\n var path = (i >= 0)\n ? arguments[i]\n : process.cwd();\n\n // Skip empty and invalid entries\n if (typeof path !== 'string' || !path) {\n continue;\n }\n\n resolvedPath = path + '/' + resolvedPath;\n resolvedAbsolute = path.charAt(0) === '/';\n}\n\n// At this point the path should be resolved to a full absolute path, but\n// handle relative paths to be safe (might happen when process.cwd() fails)\n\n// Normalize the path\nresolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {\n return !!p;\n }), !resolvedAbsolute).join('/');\n\n return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';\n};\n\n// path.normalize(path)\n// posix version\nexports.normalize = function(path) {\nvar isAbsolute = path.charAt(0) === '/',\n trailingSlash = path.slice(-1) === '/';\n\n// Normalize the path\npath = normalizeArray(filter(path.split('/'), function(p) {\n return !!p;\n }), !isAbsolute).join('/');\n\n if (!path && !isAbsolute) {\n path = '.';\n }\n if (path && trailingSlash) {\n path += '/';\n }\n \n return (isAbsolute ? '/' : '') + path;\n};\n\n\n// posix version\nexports.join = function() {\n var paths = Array.prototype.slice.call(arguments, 0);\n return exports.normalize(filter(paths, function(p, index) {\n return p && typeof p === 'string';\n }).join('/'));\n};\n\n\nexports.dirname = function(path) {\n var dir = splitPathRe.exec(path)[1] || '';\n var isWindows = false;\n if (!dir) {\n // No dirname\n return '.';\n } else if (dir.length === 1 ||\n (isWindows && dir.length <= 3 && dir.charAt(1) === ':')) {\n // It is just a slash or a drive letter with a slash\n return dir;\n } else {\n // It is a full dirname, strip trailing slash\n return dir.substring(0, dir.length - 1);\n }\n};\n\n\nexports.basename = function(path, ext) {\n var f = splitPathRe.exec(path)[2] || '';\n // TODO: make this comparison case-insensitive on windows?\n if (ext && f.substr(-1 * ext.length) === ext) {\n f = f.substr(0, f.length - ext.length);\n }\n return f;\n};\n\n\nexports.extname = function(path) {\n return splitPathRe.exec(path)[3] || '';\n};\n\n//@ sourceURL=path"211));212213require.define("timers", Function(214[ 'require', 'module', 'exports', '__dirname', '__filename' ],215"module.exports = require(\"timers-browserify\")\n//@ sourceURL=timers"216));217218require.define("/node_modules/timers-browserify/package.json", Function(219[ 'require', 'module', 'exports', '__dirname', '__filename' ],220"module.exports = {\"main\":\"main.js\"}\n//@ sourceURL=/node_modules/timers-browserify/package.json"221));222223require.define("/node_modules/timers-browserify/main.js", Function(224[ 'require', 'module', 'exports', '__dirname', '__filename' ],225"// DOM APIs, for completeness\n\nexports.setTimeout = setTimeout;\nexports.clearTimeout = clearTimeout;\nexports.setInterval = setInterval;\nexports.clearInterval = clearInterval;\n\n// TODO: Change to more effiecient list approach used in Node.js\n// For now, we just implement the APIs using the primitives above.\n\nexports.enroll = function(item, delay) {\n item._timeoutID = setTimeout(item._onTimeout, delay);\n};\n\nexports.unenroll = function(item) {\n clearTimeout(item._timeoutID);\n};\n\nexports.active = function(item) {\n // our naive impl doesn't care (correctness is still preserved)\n};\n\n//@ sourceURL=/node_modules/timers-browserify/main.js"226));227228require.define("/main.js", Function(229[ 'require', 'module', 'exports', '__dirname', '__filename' ],230"var timers = require('timers');\n\nvar obj = {\n _onTimeout: function() {\n console.log('Timer ran for: ' + (new Date().getTime() - obj.now) + ' ms');\n },\n start: function() {\n console.log('Timer should run for 100 ms');\n this.now = new Date().getTime();\n timers.enroll(this, 100);\n }\n};\n\nobj.start();\n\n//@ sourceURL=/main.js"231));232require("/main.js");233234235