UNPKG

mx-wolf-amount-spelled-out

Version:

сумма прописью для платежки ЦБ

12 lines (11 loc) 330 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getThreeDigits = void 0; const getThreeDigits = (numerical) => { return [ Math.floor(numerical / 100), Math.floor((numerical % 100) / 10), numerical % 10, ]; }; exports.getThreeDigits = getThreeDigits;