UNPKG

differify-js

Version:

Differify allows you to get the diff between two entities (objects diff, arrays diff, date diff, functions diff, number diff, etc) very easily, quickly and in a friendly way.

12 lines (11 loc) 243 B
import DIFF_MODES from '../enums/modes'; type modeOptions = { array?: DIFF_MODES; object?: DIFF_MODES; function?: DIFF_MODES; }; type config = { mode?: modeOptions; compareArraysInOrder?: boolean; }; export default config;