blob: 5fbab57435f9ad9f7345f5c170b04b12cd1dc2e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*!
* global-modules <https://github.com/jonschlinkert/global-modules>
*
* Copyright (c) 2015 Jon Schlinkert.
* Licensed under the MIT license.
*/
'use strict';
var path = require('path');
var prefix = require('global-prefix');
var isWindows = require('is-windows');
if (isWindows()) {
module.exports = path.resolve(prefix, 'node_modules');
} else {
module.exports = path.resolve(prefix, 'lib/node_modules');
}
|