mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
7 lines
128 B
JavaScript
7 lines
128 B
JavaScript
'use strict';
|
|
|
|
module.exports = function (from, to, options) {
|
|
this.copy(from, to, options);
|
|
this.delete(from, options);
|
|
};
|