2018-01-09 15:36:42 +01:00

11 lines
136 B
JavaScript

import { copy } from './copyPaste';
class Thing {
handleCopySomething() {
copy();
}
completelyUnrelated(copy = 123) {
}
}