Skip to content

Instantly share code, notes, and snippets.

View natsu90's full-sized avatar
🐶
I have no idea what I'm doing

Sulaiman Sudirman natsu90

🐶
I have no idea what I'm doing
View GitHub Profile
@natsu90
natsu90 / duitnow.js
Last active March 22, 2024 20:04 — forked from chengkiang/paynow.js
MY DuitNow QR Code Generator Sample
String.prototype.padLeft = function (n, str) {
if (n < String(this).length) {
return this.toString();
}
else {
return Array(n - String(this).length + 1).join(str || '0') + this;
}
}
function crc16(s) {