ant-design/tests/__mocks__/copy-to-clipboard.js
Camol bdabee4db4
feat(Typography): copyable text support format (#35219)
Co-authored-by: kanweiwei <kanweiwei@nutstore.net>
2022-04-25 09:49:48 +08:00

7 lines
111 B
JavaScript

function copy(str, options = {}) {
copy.lastStr = str;
copy.lastOptions = options;
}
export default copy;