@fourlights/mapper
Version:
A simple data mapper written in typescript
15 lines (12 loc) • 584 B
text/typescript
import { isPlainObject } from './lib/utils/isPlainObject.cjs';
import { wrapProperty } from './lib/utils/wrapProperty.cjs';
import { pick } from './lib/utils/pick.cjs';
import { omit } from './lib/utils/omit.cjs';
declare const index_isPlainObject: typeof isPlainObject;
declare const index_omit: typeof omit;
declare const index_pick: typeof pick;
declare const index_wrapProperty: typeof wrapProperty;
declare namespace index {
export { index_isPlainObject as isPlainObject, index_omit as omit, index_pick as pick, index_wrapProperty as wrapProperty };
}
export { index as i };