Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
track() {
const track = Track(), that = this;
const wrappedTrack = Track.compose(stampit.methods({
end() {
track.end();
return that;
}
}))(track);
this.tracks.push(track);
return wrappedTrack;
}
});