devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
82 lines (81 loc) • 2.55 kB
JavaScript
/**
* DevExtreme (core/utils/inflector.js)
* Version: 18.2.18
* Build date: Tue Oct 18 2022
*
* Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
;
var map = require("./iterator").map;
var _normalize = function(text) {
if (void 0 === text || null === text) {
return ""
}
return String(text)
};
var _upperCaseFirst = function(text) {
return _normalize(text).charAt(0).toUpperCase() + text.substr(1)
};
var _chop = function(text) {
return _normalize(text).replace(/([a-z\d])([A-Z])/g, "$1 $2").split(/[\s_-]+/)
};
var dasherize = function(text) {
return map(_chop(text), function(p) {
return p.toLowerCase()
}).join("-")
};
var underscore = function(text) {
return dasherize(text).replace(/-/g, "_")
};
var camelize = function(text, upperFirst) {
return map(_chop(text), function(p, i) {
p = p.toLowerCase();
if (upperFirst || i > 0) {
p = _upperCaseFirst(p)
}
return p
}).join("")
};
var humanize = function(text) {
return _upperCaseFirst(dasherize(text).replace(/-/g, " "))
};
var titleize = function(text) {
return map(_chop(text), function(p) {
return _upperCaseFirst(p.toLowerCase())
}).join(" ")
};
var DIGIT_CHARS = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
var captionize = function(name) {
var i, char, captionList = [],
isPrevCharNewWord = false,
isNewWord = false;
for (i = 0; i < name.length; i++) {
char = name.charAt(i);
isNewWord = char === char.toUpperCase() && "-" !== char && ")" !== char || char in DIGIT_CHARS;
if ("_" === char || "." === char) {
char = " ";
isNewWord = true
} else {
if (0 === i) {
char = char.toUpperCase();
isNewWord = true
} else {
if (!isPrevCharNewWord && isNewWord) {
if (captionList.length > 0) {
captionList.push(" ")
}
}
}
}
captionList.push(char);
isPrevCharNewWord = isNewWord
}
return captionList.join("")
};
exports.dasherize = dasherize;
exports.camelize = camelize;
exports.humanize = humanize;
exports.titleize = titleize;
exports.underscore = underscore;
exports.captionize = captionize;