about summary refs log tree commit diff stats
path: root/lib/quickjs/libbf.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix compilation with -DCONFIG_BIGNUMCharlie Gordon2024-04-141-0/+2
| | | | | - disable BigDecimal convertion in `JS_ReadBigNum` - fix some error messages
* Revert bignum build fixesbptato2024-04-141-2/+0
| | | | | | | Importing patch from upstream instead. This reverts commits ccf177cc125e120b338612bbf24966faf3fd87fa and 6776f4dba975137f4034b1295c0f1958b752a2cb.
* Prevent UB on memcpy and floating point conversionsCharlie Gordon2024-03-131-1/+1
| | | | | | | - add `memcpy_no_ub` that accepts null pointers for 0 count - prevent 0 length allocation in `js_worker_postMessage` - use safer test for `int` value in `JS_NewFloat64`, `JS_ToArrayLengthFree` and `js_typed_array_indexOf`
* Strip trailing spacesCharlie Gordon2024-03-021-269/+269
|
* quickjs/libbf: add missing ifdefbptato2023-12-051-0/+2
|
* the BigInt support is now always includedbellard2023-12-051-1/+8
|
* bf_set_ui() fix (github issue #133)bellard2023-12-051-16/+16
|
* Revert "fix undefined behavior: shift 32 bits for uint32_t in bf_set_ui"bptato2023-12-051-6/+1
| | | | | | This reverts commit 821693c4374d9895f462fa29644905c61dbb241d. (Importing fix from upstream instead.)
* fix undefined behavior: shift 32 bits for uint32_t in bf_set_uiBo Yao2023-09-231-1/+6
|
* Include QuickJS sources in the repositorybptato2023-06-221-0/+8466
Taken from txiki.js, so it includes zamofex's top-level await patch.