mirror of
https://github.com/bower/bower.git
synced 2026-02-12 06:55:04 -05:00
12 lines
239 B
JavaScript
12 lines
239 B
JavaScript
var config = require('../../config');
|
|
|
|
var Manager = function (options) {
|
|
options = options || {};
|
|
|
|
this._offline = !!options.offline;
|
|
this._config = options.config || config;
|
|
};
|
|
|
|
// -----------------
|
|
|
|
module.exports = Manager; |