20 lines
399 B
JavaScript
20 lines
399 B
JavaScript
|
// 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);
|