8 lines
242 B
TypeScript
8 lines
242 B
TypeScript
import { flattenObject, maskString } from "./util";
|
|
|
|
console.log(flattenObject({ a: { b: { c: [1, 2, 3] } } }));
|
|
|
|
console.log(maskString("abcdefghijklmnopqrstuvwxyz", 1 / 3, 5));
|
|
|
|
console.log(maskString("abcdefghijklmnopqrstuvwxyz", 1, 30));
|