[Pkg-javascript-commits] [underscore.string] 02/14: Merge tag 'upstream/3.3.4'
Praveen Arimbrathodiyil
praveen at moszumanska.debian.org
Thu Jul 28 06:23:27 UTC 2016
This is an automated email from the git hooks/post-receive script.
praveen pushed a commit to branch master
in repository underscore.string.
commit 94b3d0c97fddeb589727ceef6e46cb999ce316c3
Merge: 5d69296 63cfe4e
Author: Praveen Arimbrathodiyil <praveen at debian.org>
Date: Mon Jul 11 13:10:42 2016 +0530
Merge tag 'upstream/3.3.4'
Upstream version 3.3.4
.editorconfig | 9 +
.eslintignore | 8 +
.eslintrc | 26 +
.gitignore | 6 +
.npmignore | 4 +
.travis.yml | 12 +-
CHANGELOG.markdown | 200 ++++++
CONTRIBUTING.markdown | 32 +
Gemfile | 4 -
Gemfile.lock | 17 -
README.markdown | 878 ++++++++++++++------------
Rakefile | 23 -
bench/chop.js | 5 +
bench/count.js | 5 +
bench/endsWith.js | 5 +
bench/escapeHTML.js | 5 +
bench/insert.js | 5 +
bench/isBlank.js | 5 +
bench/join.js | 5 +
bench/levenshtein.js | 8 +
bench/pad.js | 26 +
bench/prune.js | 5 +
bench/reverse.js | 5 +
bench/slugify.js | 5 +
bench/splice.js | 5 +
bench/startsWith.js | 5 +
bench/strLeft.js | 5 +
bench/strLeftBack.js | 5 +
bench/strRight.js | 5 +
bench/strRightBack.js | 5 +
bench/succ.js | 12 +
bench/titleize.js | 5 +
bench/toNumber.js | 5 +
bench/trim.js | 18 +
bench/truncate.js | 5 +
bench/unescapeHTML.js | 5 +
package.json => bower.json | 13 +-
camelize.js | 14 +
capitalize.js | 8 +
chars.js | 5 +
chop.js | 6 +
classify.js | 8 +
clean.js | 5 +
cleanDiacritics.js | 22 +
component.json | 13 +-
count.js | 10 +
dasherize.js | 5 +
decapitalize.js | 6 +
dedent.js | 28 +
dist/underscore.string.js | 1369 +++++++++++++++++++++++++++++++++++++++++
dist/underscore.string.min.js | 19 +
endsWith.js | 13 +
escapeHTML.js | 17 +
exports.js | 10 +
helper/adjacent.js | 9 +
helper/defaultToWhiteSpace.js | 10 +
helper/escapeChars.js | 19 +
helper/escapeRegExp.js | 5 +
helper/htmlEntities.js | 19 +
helper/makeString.js | 7 +
helper/strRepeat.js | 9 +
helper/toPositive.js | 3 +
humanize.js | 7 +
include.js | 6 +
index.js | 143 +++++
insert.js | 5 +
isBlank.js | 5 +
join.js | 9 +
levenshtein.js | 52 ++
lib/underscore.string.js | 673 --------------------
lines.js | 4 +
lpad.js | 5 +
lrpad.js | 5 +
ltrim.js | 10 +
map.js | 9 +
meteor-post.js | 2 +
meteor-pre.js | 6 +
naturalCmp.js | 29 +
numberFormat.js | 12 +
package.js | 16 +
package.json | 51 +-
pad.js | 26 +
pred.js | 5 +
prune.js | 27 +
quote.js | 5 +
repeat.js | 16 +
replaceAll.js | 8 +
reverse.js | 5 +
rpad.js | 5 +
rtrim.js | 10 +
scripts/bump-version.js | 19 +
scripts/push-tags.js | 4 +
slugify.js | 7 +
splice.js | 7 +
sprintf.js | 4 +
startsWith.js | 9 +
strLeft.js | 8 +
strLeftBack.js | 8 +
strRight.js | 8 +
strRightBack.js | 8 +
stripTags.js | 5 +
succ.js | 5 +
surround.js | 3 +
swapCase.js | 7 +
tests/camelize.js | 35 ++
tests/capitalize.js | 29 +
tests/chars.js | 12 +
tests/chop.js | 12 +
tests/classify.js | 17 +
tests/clean.js | 11 +
tests/cleanDiacritics.js | 24 +
tests/count.js | 22 +
tests/dasherize.js | 22 +
tests/decapitalize.js | 13 +
tests/dedent.js | 35 ++
tests/endsWith.js | 42 ++
tests/escapeHTML.js | 15 +
tests/escapeRegExp.js | 9 +
tests/exports.js | 9 +
tests/humanize.js | 18 +
tests/include.js | 15 +
tests/insert.js | 15 +
tests/isBlank.js | 17 +
tests/join.js | 18 +
tests/levenshtein.js | 22 +
tests/lines.js | 20 +
tests/lpad.js | 14 +
tests/lrpad.js | 16 +
tests/ltrim.js | 21 +
tests/map.js | 31 +
tests/naturalCmp.js | 40 ++
tests/naturalSort.js | 8 +
tests/numberFormat.js | 25 +
tests/pad.js | 19 +
tests/pred.js | 20 +
tests/prune.js | 25 +
tests/quote.js | 18 +
tests/repeat.js | 16 +
tests/replaceAll.js | 20 +
tests/reverse.js | 16 +
tests/rpad.js | 15 +
tests/rtrim.js | 22 +
tests/slugify.js | 16 +
tests/splice.js | 10 +
tests/sprintf.js | 15 +
tests/standalone.js | 97 +++
tests/startsWith.js | 39 ++
tests/strLeft.js | 16 +
tests/strLeftBack.js | 16 +
tests/strRight.js | 17 +
tests/strRightBack.js | 16 +
tests/stripTags.js | 14 +
tests/succ.js | 20 +
tests/surround.js | 15 +
tests/swapCase.js | 12 +
tests/titleize.js | 16 +
tests/toBoolean.js | 29 +
tests/toNumber.js | 45 ++
tests/toSentence.js | 12 +
tests/toSentenceSerial.js | 10 +
tests/trim.js | 29 +
tests/truncate.js | 14 +
tests/underscored.js | 15 +
tests/unescapeHTML.js | 31 +
tests/unquote.js | 11 +
tests/vsprintf.js | 13 +
tests/words.js | 17 +
tests/wrap.js | 35 ++
titleize.js | 7 +
toBoolean.js | 20 +
toNumber.js | 5 +
toSentence.js | 12 +
toSentenceSerial.js | 5 +
trim.js | 10 +
truncate.js | 8 +
underscored.js | 5 +
unescapeHTML.js | 20 +
unquote.js | 6 +
vsprintf.js | 4 +
words.js | 7 +
wrap.js | 102 +++
181 files changed, 4693 insertions(+), 1149 deletions(-)
diff --cc .gitignore
index b25c15b,0e53191..b15e4f9
--- a/.gitignore
+++ b/.gitignore
@@@ -1,1 -1,6 +1,7 @@@
+*~
+ .gitignore
+ .DS_Store
+ .project
+ .tmp_*
+ node_modules
+ coverage
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/underscore.string.git
More information about the Pkg-javascript-commits
mailing list