Bump to v4.13.0.

This commit is contained in:
John-David Dalton
2016-05-18 16:00:35 -07:00
parent 07c844053e
commit 35cdf6513b
513 changed files with 2603 additions and 2423 deletions

View File

@@ -1,34 +1,34 @@
import camelCase from './camelCase';
import capitalize from './capitalize';
import deburr from './deburr';
import endsWith from './endsWith';
import escape from './escape';
import escapeRegExp from './escapeRegExp';
import kebabCase from './kebabCase';
import lowerCase from './lowerCase';
import lowerFirst from './lowerFirst';
import pad from './pad';
import padEnd from './padEnd';
import padStart from './padStart';
import parseInt from './parseInt';
import repeat from './repeat';
import replace from './replace';
import snakeCase from './snakeCase';
import split from './split';
import startCase from './startCase';
import startsWith from './startsWith';
import template from './template';
import templateSettings from './templateSettings';
import toLower from './toLower';
import toUpper from './toUpper';
import trim from './trim';
import trimEnd from './trimEnd';
import trimStart from './trimStart';
import truncate from './truncate';
import unescape from './unescape';
import upperCase from './upperCase';
import upperFirst from './upperFirst';
import words from './words';
import camelCase from './camelCase.js';
import capitalize from './capitalize.js';
import deburr from './deburr.js';
import endsWith from './endsWith.js';
import escape from './escape.js';
import escapeRegExp from './escapeRegExp.js';
import kebabCase from './kebabCase.js';
import lowerCase from './lowerCase.js';
import lowerFirst from './lowerFirst.js';
import pad from './pad.js';
import padEnd from './padEnd.js';
import padStart from './padStart.js';
import parseInt from './parseInt.js';
import repeat from './repeat.js';
import replace from './replace.js';
import snakeCase from './snakeCase.js';
import split from './split.js';
import startCase from './startCase.js';
import startsWith from './startsWith.js';
import template from './template.js';
import templateSettings from './templateSettings.js';
import toLower from './toLower.js';
import toUpper from './toUpper.js';
import trim from './trim.js';
import trimEnd from './trimEnd.js';
import trimStart from './trimStart.js';
import truncate from './truncate.js';
import unescape from './unescape.js';
import upperCase from './upperCase.js';
import upperFirst from './upperFirst.js';
import words from './words.js';
export default {
camelCase, capitalize, deburr, endsWith, escape,