bump version to 1.0.1

This commit is contained in:
Mahdi Dibaiee
2015-04-21 17:01:07 +04:30
parent 0970f7eb2b
commit a45b11f921
3 changed files with 24 additions and 24 deletions

2
dist/helpers.js vendored
View File

@ -152,6 +152,6 @@ var flatten = (function (_flatten) {
exports.flatten = flatten;
var removeSymbols = function removeSymbols(string) {
return string.replace(/\W/g, '');
return string.toString().replace(/\W/g, '');
};
exports.removeSymbols = removeSymbols;