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) 246 B
/*! * Copyright(c) 2020 Fabian Roberto Orue <fabianorue@gmail.com> * BSD Licensed */ declare enum PROPERTY_STATUS { ADDED = "ADDED", DELETED = "DELETED", MODIFIED = "MODIFIED", EQUAL = "EQUAL" } export default PROPERTY_STATUS;