From 4cc0bfa5195d54876a6b807827e582522c813019 Mon Sep 17 00:00:00 2001 From: Wojciech Basiura <35614528+youPickItUp@users.noreply.github.com> Date: Sat, 30 Dec 2023 01:16:37 +0100 Subject: [PATCH] docs: mention the max plain JS number argument value (#307) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5be8a33..9fa1263 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ is the list of them in the order of appearance in the function name: ### Postfixes * `n` - the argument of the function must be a plain JavaScript - Number. Decimals are not supported. + Number. Decimals are not supported. The number passed must be smaller than 0x4000000 (67_108_864). Otherwise, an error is thrown. * `rn` - both argument and return value of the function are plain JavaScript Numbers. Decimals are not supported.