Merge pull request #19529 from creadicted/patch-1

camelizeIf and underscoredIf moved from SequelizeLoDash to Utils
This commit is contained in:
Nathan Shively-Sanders
2017-09-05 15:42:26 -07:00
committed by GitHub

View File

@@ -6158,8 +6158,6 @@ declare namespace sequelize {
interface SequelizeLoDash extends _.LoDashStatic {
camelizeIf(str: string, condition: boolean): string;
underscoredIf(str: string, condition: boolean): string;
/**
* * Returns an array with some falsy values removed. The values null, "", undefined and NaN are considered
* falsey.
@@ -6173,6 +6171,9 @@ declare namespace sequelize {
interface Utils {
camelizeIf(str: string, condition: boolean): string;
underscoredIf(str: string, condition: boolean): string;
_: SequelizeLoDash;
/**