Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fictional

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fictional - npm Package Compare versions

Comparing version 0.7.4 to 0.7.6

9

CHANGELOG.md

@@ -5,2 +5,11 @@ # Changelog

### [0.7.6](https://github.com/oftherivier/fictional/compare/v0.7.5...v0.7.6) (2022-10-25)
### [0.7.5](https://github.com/oftherivier/fictional/compare/v0.7.4...v0.7.5) (2022-10-25)
### Bug Fixes
* JSonSerializable typedefs to properly include nested types ([5d6e204](https://github.com/oftherivier/fictional/commit/5d6e20474d2abeb9dbc44f09ea6bd77fcc60df1b))
### [0.7.4](https://github.com/oftherivier/fictional/compare/v0.7.3...v0.7.4) (2022-10-19)

@@ -7,0 +16,0 @@

12

index.d.ts
export type JSONPrimitive = null | number | string | boolean
export type PlainNested<V> = V | { [s: string]: V } | Array<V>
export type PlainNested<V> =
| V
| { [s: string]: PlainNested<V> }
| Array<PlainNested<V>>

@@ -215,5 +218,6 @@ export type JSONSerializable = PlainNested<JSONPrimitive>

) => TupleReturnType<Makers>
<Makers extends AnyMakers>(input: Input, makers: Makers): TupleReturnType<
Makers
>
<Makers extends AnyMakers>(
input: Input,
makers: Makers
): TupleReturnType<Makers>
}

@@ -220,0 +224,0 @@

{
"name": "fictional",
"description": "Generate fake data deterministically from a given input",
"version": "0.7.4",
"version": "0.7.6",
"type": "commonjs",

@@ -6,0 +6,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc