Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « lib « qs « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e094933d1bcd08eee5e273ef553f8f049dfc1c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Load modules

var Stringify = require('./stringify');
var Parse = require('./parse');


// Declare internals

var internals = {};


module.exports = {
    stringify: Stringify,
    parse: Parse
};