mirror of
https://github.com/publiclab/image-sequencer.git
synced 2025-12-11 19:00:00 +01:00
* Eslint operator spacing config * consistent spacing after comma * comma styling config * Trailing spaces config
6 lines
157 B
JavaScript
6 lines
157 B
JavaScript
// add steps to the sequencer
|
|
function AddStep(_sequencer, name, o) {
|
|
return require('./InsertStep')(_sequencer, -1, name, o);
|
|
}
|
|
module.exports = AddStep;
|