UNPKG
@runnable/api-client
Version:
latest (9.2.9)
9.2.9
9.2.8
9.2.7
9.2.6
9.2.5
9.2.4
9.2.3
9.2.2
9.2.1
9.2.0
9.1.1
9.1.0
9.0.0
7.5.0
7.4.0
7.3.0
7.2.0
7.1.0
7.0.3
7.0.2
7.0.1
7.0.0
6.0.1
5.1.1
5.1.0
5.0.1
5.0.0
Runnable API Client
github.com/Runnable/api-client
Runnable/api-client
@runnable/api-client
/
lib
/
models
/
debug-container
/
file.js
18 lines
(12 loc)
•
250 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'use strict'
;
/** * Instance File Model */
var
util =
require
(
'util'
);
var
Base
=
require
(
'../base-file'
);
module
.
exports
=
File
;
function
File
(
) {
Base
.
apply
(
this
,
arguments
); } util.
inherits
(
File
,
Base
);
File
.
prototype
.
urlPath
=
'files'
;