Skip to content

Instantly share code, notes, and snippets.

@chengkiang
chengkiang / paynow.js
Last active February 28, 2025 14:40
SG PayNow 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) {