code added

这个提交包含在:
2023-04-24 18:37:05 +05:30
父节点 edd3113258
当前提交 d70c0637c2
修改 8 个文件,包含 353 行新增197 行删除
+8
查看文件
@@ -3,6 +3,14 @@ const uid = function(){
return Date.now().toString(36) + Math.random().toString(36).substr(2);
}
function shuffleArray(array) {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}
}
function getCurrencySymbol(value=0) {
let type = 'INR'
if (type) {