Skip to content

Commit

Permalink
style: sort functions in alphabetical order
Browse files Browse the repository at this point in the history
  • Loading branch information
curbengh committed Aug 29, 2019
1 parent d7cef2f commit e78c0f5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/index.js
Expand Up @@ -2,10 +2,15 @@

const hash = require('./hash');

exports.CacheStream = require('./cache_stream');
exports.camelCaseKeys = require('./camel_case_keys');
exports.Color = require('./color');
exports.createSha1Hash = hash.createSha1Hash;
exports.escapeDiacritic = require('./escape_diacritic');
exports.escapeHTML = require('./escape_html');
exports.escapeRegExp = require('./escape_regexp');
exports.hash = hash.hash;
exports.HashStream = hash.HashStream;
exports.highlight = require('./highlight');
exports.htmlTag = require('./html_tag');
exports.Pattern = require('./pattern');
Expand All @@ -15,8 +20,3 @@ exports.spawn = require('./spawn');
exports.stripHTML = require('./strip_html');
exports.truncate = require('./truncate');
exports.wordWrap = require('./word_wrap');
exports.hash = hash.hash;
exports.HashStream = hash.HashStream;
exports.createSha1Hash = hash.createSha1Hash;
exports.CacheStream = require('./cache_stream');
exports.camelCaseKeys = require('./camel_case_keys');

0 comments on commit e78c0f5

Please sign in to comment.