Skip to content
Permalink
9bfb9ba527
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
21 lines (15 sloc) 578 Bytes
'use strict'
const compare = require('./lib/compare')
const describe = require('./lib/describe')
const diff = require('./lib/diff')
const format = require('./lib/format')
const serialize = require('./lib/serialize')
exports.compare = compare.compare
exports.compareDescriptors = compare.compareDescriptors
exports.describe = describe
exports.diff = diff.diff
exports.diffDescriptors = diff.diffDescriptors
exports.format = format.format
exports.formatDescriptor = format.formatDescriptor
exports.serialize = serialize.serialize
exports.deserialize = serialize.deserialize