nativescript-angular
Version:
An Angular renderer that lets you build mobile apps with NativeScript.
10 lines • 306 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
function isPresent(obj) {
return obj !== undefined && obj !== null;
}
exports.isPresent = isPresent;
function isBlank(obj) {
return obj === undefined || obj === null;
}
exports.isBlank = isBlank;
//# sourceMappingURL=lang-facade.js.map