436a9631fc
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
var common = module.exports;
|
|
var path = require('path');
|
|
|
|
var rootDir = path.join(__dirname, '..');
|
|
common.dir = {
|
|
lib: rootDir + '/lib'
|
|
};
|
|
|
|
common.assert = require('assert');
|
|
common.fake = require('fake'); |