wallet-core/node_modules/xml2js/lib/processors.js

20 lines
399 B
JavaScript
Raw Normal View History

2016-11-03 01:33:53 +01:00
// Generated by CoffeeScript 1.7.1
(function() {
var prefixMatch;
prefixMatch = new RegExp(/(?!xmlns)^.*:/);
exports.normalize = function(str) {
return str.toLowerCase();
};
exports.firstCharLowerCase = function(str) {
return str.charAt(0).toLowerCase() + str.slice(1);
};
exports.stripPrefix = function(str) {
return str.replace(prefixMatch, '');
};
}).call(this);