mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
42 lines
957 B
JavaScript
42 lines
957 B
JavaScript
module.exports = {
|
|
slug(text) {
|
|
return text.toLowerCase().replace(/ /g, '_');
|
|
},
|
|
|
|
getRandomName() {
|
|
return Math.random().toString(36).substr(3);
|
|
},
|
|
|
|
async sleep(seconds) {
|
|
return new Promise(resolve => {
|
|
setTimeout(resolve, seconds * 1000);
|
|
});
|
|
},
|
|
|
|
_(text, args) {
|
|
// should return translated text
|
|
return this.string_replace(text, args);
|
|
},
|
|
|
|
string_replace(str, args) {
|
|
if (!Array.isArray(args)) {
|
|
args = [args];
|
|
}
|
|
|
|
if(str==undefined) return str;
|
|
|
|
let unkeyed_index = 0;
|
|
return str.replace(/\{(\w*)\}/g, (match, key) => {
|
|
if (key === '') {
|
|
key = unkeyed_index;
|
|
unkeyed_index++
|
|
}
|
|
if (key == +key) {
|
|
return args[key] !== undefined
|
|
? args[key]
|
|
: match;
|
|
}
|
|
});
|
|
}
|
|
|
|
}; |