UNPKG
jointjs
Version:
alpha (4.0.0-alpha.4)
beta (3.6.0-beta.2)
latest (3.7.7)
4.0.0-alpha.4
4.0.0-alpha.3
4.0.0-alpha.2
4.0.0-alpha.1
3.7.7
3.7.6
3.7.5
3.7.4
3.7.3
3.7.2
3.7.1
3.7.0
3.6.5
3.6.4
3.6.3
3.6.2
3.6.1
3.6.0
3.6.0-beta.2
3.6.0-beta.1
3.6.0-beta.0
3.5.5
3.5.4
3.5.3
3.5.2
3.5.1
3.5.0
3.4.4
3.4.3
3.4.2
3.4.1
3.4.0
3.3.1
3.3.0
3.2.0
3.1.1
3.1.0
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.2.1
2.2.0
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.1
2.0.0
1.1.0
1.0.3
1.0.2
1.0.1
0.9.10
0.9.9
0.9.7
0.9.5
0.9.4
0.8.0
0.7.0
JavaScript diagramming library
jointjs.com
clientIO/joint
jointjs
/
demo
/
dgl
/
node_modules
/
shelljs
/
src
/
pwd.js
17 lines
(14 loc)
•
278 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var
path =
require
(
'path'
);
var
common =
require
(
'./common'
); common.
register
(
'pwd'
, _pwd, {
allowGlobbing
:
false
, });
//@
//@ ### pwd()
//@
//@ Returns the current directory.
function
_pwd
(
) {
var
pwd = path.
resolve
(process.
cwd
());
return
pwd; }
module
.
exports
= _pwd;