mirror of
https://github.com/tweenjs/tween.js.git
synced 2025-12-08 20:16:12 +00:00
8 lines
114 B
JavaScript
8 lines
114 B
JavaScript
const fs = require('fs');
|
|
|
|
fs.unlink('.temp.version.js', (error) => {
|
|
if (error) {
|
|
process.exit(1);
|
|
}
|
|
});
|