Completed
Push — master ( ee7956...a1d8a9 )
by Sand
01:08
created

examples/get-info - example 2.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 17
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 0
wmc 1
nc 1
mnd 0
bc 1
fnc 1
dl 0
loc 17
rs 10
bpm 1
cpm 1
noi 1
c 0
b 0
f 0
1
2
'use strict';
3
4
const Sandcage = require('..');
5
6
const sandcage = new Sandcage('[YOUR SANDCAGE API KEY]');
7
const payload = {
8
  files: [
9
    {'file_token': '[file_token 1]'},
10
    {'file_token': '[file_token 2]'}
11
  ]
12
};
13
14
sandcage
15
  .getInfo(payload)
16
  .then((result) => {
17
    console.log(result);
18
  });