UNPKG

318 BPlain TextView Raw
1import _clone from '@antv/util/lib/clone';
2
3// g2 的配置项为 xxCfg | null
4export default (cfg: Object, keys: string[]) => {
5 const opt = _clone(cfg);
6 keys.forEach(key => {
7 if (opt[key] === true) {
8 opt[key] = {};
9 } else if (opt[key] === false) {
10 opt[key] = null;
11 }
12 });
13 return opt;
14}