devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
78 lines (77 loc) • 2.51 kB
JavaScript
/**
* DevExtreme (esm/__internal/core/utils/m_string.js)
* Version: 24.2.6
* Build date: Mon Mar 17 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import {
isFunction,
isString
} from "../../../core/utils/type";
export const encodeHtml = function() {
const encodeRegExp = [new RegExp("&", "g"), new RegExp('"', "g"), new RegExp("'", "g"), new RegExp("<", "g"), new RegExp(">", "g")];
return function(str) {
return String(str).replace(encodeRegExp[0], "&").replace(encodeRegExp[1], """).replace(encodeRegExp[2], "'").replace(encodeRegExp[3], "<").replace(encodeRegExp[4], ">")
}
}();
const splitQuad = function(raw) {
switch (typeof raw) {
case "string":
return raw.split(/\s+/, 4);
case "object":
return [raw.x || raw.h || raw.left, raw.y || raw.v || raw.top, raw.x || raw.h || raw.right, raw.y || raw.v || raw.bottom];
case "number":
return [raw];
default:
return raw
}
};
export const quadToObject = function(raw) {
const quad = splitQuad(raw);
let left = parseInt(quad && quad[0], 10);
let top = parseInt(quad && quad[1], 10);
let right = parseInt(quad && quad[2], 10);
let bottom = parseInt(quad && quad[3], 10);
if (!isFinite(left)) {
left = 0
}
if (!isFinite(top)) {
top = left
}
if (!isFinite(right)) {
right = left
}
if (!isFinite(bottom)) {
bottom = top
}
return {
top: top,
right: right,
bottom: bottom,
left: left
}
};
export function format(template) {
for (var _len = arguments.length, values = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
values[_key - 1] = arguments[_key]
}
if (isFunction(template)) {
return template(...values)
}
values.forEach(((value, index) => {
if (isString(value)) {
value = value.replace(/\$/g, "$$$$")
}
const placeholderReg = new RegExp(`\\{${index}\\}`, "gm");
template = template.replace(placeholderReg, value)
}));
return template
}
export const isEmpty = function() {
const SPACE_REGEXP = /\s/g;
return function(text) {
return !text || !text.replace(SPACE_REGEXP, "")
}
}();