@loopback/repository
Version:
Define and implement a common set of interfaces for interacting with databases
36 lines • 898 B
JavaScript
// Copyright IBM Corp. and LoopBack contributors 2017,2019. All Rights Reserved.
// Node module: @loopback/repository
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
Object.defineProperty(exports, "__esModule", { value: true });
exports.AnyType = void 0;
/* eslint-disable @typescript-eslint/no-explicit-any */
/**
* Any type
*/
class AnyType {
constructor() {
this.name = 'any';
}
isInstance(value) {
return true;
}
isCoercible(value) {
return true;
}
defaultValue() {
return undefined;
}
coerce(value) {
return value;
}
serialize(value) {
if (value && typeof value.toJSON === 'function') {
return value.toJSON();
}
return value;
}
}
exports.AnyType = AnyType;
//# sourceMappingURL=any.js.map
;