Skip to content

Instantly share code, notes, and snippets.

View m1chaeldev's full-sized avatar

Thái Nguyễn m1chaeldev

View GitHub Profile
const getPaginationPages = (current) => {
const total = 50;
const min = (() => {
if (total <= 5) return 1;
// reached to total pages
if (current + 2 > total) {
return total - 4;
}
return current - 2 > 1 ? current - 2 : 1;
})();
function convertNumberToText(n) {
if (n === 0) return "không"
const s = n.toString().split("")
const text = {
1: "một",
2: "hai",
3: "ba",
4: "tư",
5: "năm",
@m1chaeldev
m1chaeldev / nonAccentVietnamese.js
Created July 6, 2021 08:34 — forked from jarvisluong/nonAccentVietnamese.js
Converting standard Vietnamese Characters to non-accent ones. Example: hải -> hai
function nonAccentVietnamese(str) {
str = str.toLowerCase();
// We can also use this instead of from line 11 to line 17
// str = str.replace(/\u00E0|\u00E1|\u1EA1|\u1EA3|\u00E3|\u00E2|\u1EA7|\u1EA5|\u1EAD|\u1EA9|\u1EAB|\u0103|\u1EB1|\u1EAF|\u1EB7|\u1EB3|\u1EB5/g, "a");
// str = str.replace(/\u00E8|\u00E9|\u1EB9|\u1EBB|\u1EBD|\u00EA|\u1EC1|\u1EBF|\u1EC7|\u1EC3|\u1EC5/g, "e");
// str = str.replace(/\u00EC|\u00ED|\u1ECB|\u1EC9|\u0129/g, "i");
// str = str.replace(/\u00F2|\u00F3|\u1ECD|\u1ECF|\u00F5|\u00F4|\u1ED3|\u1ED1|\u1ED9|\u1ED5|\u1ED7|\u01A1|\u1EDD|\u1EDB|\u1EE3|\u1EDF|\u1EE1/g, "o");
// str = str.replace(/\u00F9|\u00FA|\u1EE5|\u1EE7|\u0169|\u01B0|\u1EEB|\u1EE9|\u1EF1|\u1EED|\u1EEF/g, "u");
// str = str.replace(/\u1EF3|\u00FD|\u1EF5|\u1EF7|\u1EF9/g, "y");
// str = str.replace(/\u0111/g, "d");