Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
WIKIPEDIA
/
nodejs
/
daily_store_reports_nodejs
/
node_modules
/
proxyquire
/
test
/
samples
:
foo.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
var stats = require('./stats') var bar = require('./bar') var boof = require('./boof') var foonum = require('./foonum') var foobool = require('./foobool') var fooarray = require('./fooarray') var path = require('path') var crypto // Require if present. try { crypto = require('crypto') } catch (e) { crypto = 'caught' } stats.incFooRequires() function bigBar () { // inline require return require('./bar').bar().toUpperCase() } function bigRab () { // module wide require return bar.rab().toUpperCase() } function bigExt (file) { return path.extname(file).toUpperCase() } function bigBas (file) { return path.basename(file).toUpperCase() } function bigCrypto () { return crypto } module.exports = { bigBar: bigBar, bigRab: bigRab, bigExt: bigExt, bigBas: bigBas, boof: boof, foonum: foonum, foobool: foobool, fooarray: fooarray, bigCrypto: bigCrypto, state: '' }