php-unserialize-js icon indicating copy to clipboard operation
php-unserialize-js copied to clipboard

Convert serialized PHP data to a javascript object graph.

Results 2 php-unserialize-js issues
Sort by recently updated
recently updated
newest added

Added an option `floatPrecision` that when set to an integer value above 0 will fix float values to a specific precision. ``` phpunserialize('', { floatPrecision: 3 }); ```

## Issue The TypeScript definition file declares a named export: ```typescript export function phpUnserialize(phpstr: string): unserialized; ``` However, the actual JavaScript module exports a function as the default export. This...