forgeplus-react/node_modules/rsuite/es/utils/clone.js

7 lines
132 B
JavaScript

export default function clone(data) {
if (data !== undefined) {
return JSON.parse(JSON.stringify(data));
}
return null;
}