All files / latest index.js

100% Statements 29/29
100% Branches 0/0
100% Functions 0/0
100% Lines 29/29

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 301x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
const Json = require('./json.js');
const Map = require('./map.js');
 
const set = require('./src/handlers/set/set');
const setAll = require('./src/handlers/set/setAll');
const get = require('./src/handlers/get/get');
const getAll = require('./src/handlers/get/getAll');
const makeObject = require('./src/handlers/make/makeObject');
const makeArray = require('./src/handlers/make/makeArray');
const makeJson = require('./src/handlers/make/makeJson');
const parse = require('./src/handlers/basic/parse');
const stringify = require('./src/handlers/basic/stringify');
const chop = require('./src/handlers/basic/chop');
const unlink = require('./src/handlers/basic/unlink');
 
module.exports.Map = Map;
module.exports.Json = Json;
 
module.exports.set = set;
module.exports.setAll = setAll;
module.exports.get = get;
module.exports.getAll = getAll;
module.exports.makeObject = makeObject;
module.exports.makeArray = makeArray;
module.exports.makeJson = makeJson;
module.exports.parse = parse;
module.exports.stringify = stringify;
module.exports.chop = chop;
module.exports.unlink = unlink;