You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
314 B
9 lines
314 B
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isValid = void 0;
|
|
const util_1 = require("@antv/util");
|
|
function isValid(x) {
|
|
return !(0, util_1.isUndefined)(x) && !(0, util_1.isNull)(x) && !Number.isNaN(x);
|
|
}
|
|
exports.isValid = isValid;
|
|
//# sourceMappingURL=is-valid.js.map
|