(source: string, destination: string)
| 242 | } |
| 243 | |
| 244 | function removeAndCopy(source: string, destination: string) { |
| 245 | rmSync(destination, { recursive: true, force: true }) |
| 246 | cpSync(source, destination, { recursive: true, verbatimSymlinks: true }) |
| 247 | } |
| 248 | |
| 249 | function copyEmoji() { |
| 250 | const emojiImages = path.join(projectRoot, 'gemoji', 'images', 'emoji') |
no outgoing calls
no test coverage detected