You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

common.js 208B

12345678910
  1. var common = module.exports;
  2. var path = require('path');
  3. var rootDir = path.join(__dirname, '..');
  4. common.dir = {
  5. lib: rootDir + '/lib'
  6. };
  7. common.assert = require('assert');
  8. common.fake = require('fake');