export function random<T>(): T; // generate random data
export function clone<T>(input: T): Primitive<T>;
export function prune<T extends object>(input: T): void;
// +) isClone, assertClone, validateClone
// +) isPrune, assertPrune, validatePrune
New functions are newly added.
Especially, you can generate test data, just by using typia.random<T>()
function.
What's Changed
- Close #491 - documentate
FeatureProgrammer
by @samchon in #492 - Add
prune()
functions by @samchon in #493 - Close #494 - add
clone()
functions by @samchon in #496 - benchmark xeon w3235 by @dirk-bester in #498
- Close #495 - add
random()
function by @samchon in #499
New Contributors
- @dirk-bester made their first contribution in #498
Full Changelog: v3.4.28...v3.5.0