Comparing version 0.0.5 to 0.0.6
@@ -42,4 +42,6 @@ "use strict"; | ||
if (s != null && typeof Object.getOwnPropertySymbols === "function") | ||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) if (e.indexOf(p[i]) < 0) | ||
t[p[i]] = s[p[i]]; | ||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { | ||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) | ||
t[p[i]] = s[p[i]]; | ||
} | ||
return t; | ||
@@ -46,0 +48,0 @@ }; |
{ | ||
"name": "lemon-curd", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "Javascript crud manager", | ||
@@ -13,5 +13,6 @@ "main": "dist/index.js", | ||
"devDependencies": { | ||
"resma": "^0.0.5", | ||
"typescript": "^3.4.3" | ||
"@types/ramda": "^0.26.19", | ||
"resma": "^0.0.32", | ||
"typescript": "^3.5.3" | ||
} | ||
} |
@@ -13,3 +13,3 @@ import { IRecord, RecordIdentifier } from 'resma' | ||
export interface Options { | ||
export interface Options { | ||
beforeCreate?: BeforeCallback | ||
@@ -16,0 +16,0 @@ beforeUpdate?: BeforeCallback |
22328
334
3