Files
video-gen/video-gen-admin/node_modules/@ant-design/cssinjs/es/linters/NaNLinter.js
T
2026-05-25 17:07:28 +08:00

7 lines
262 B
JavaScript

import { lintWarning } from "./utils";
const linter = (key, value, info) => {
if (typeof value === 'string' && /NaN/g.test(value) || Number.isNaN(value)) {
lintWarning(`Unexpected 'NaN' in property '${key}: ${value}'.`, info);
}
};
export default linter;