react-native-mock-tmp-build
Version:
A fully mocked and test-friendly version of react native
29 lines (24 loc) • 429 B
JavaScript
class Path {
constructor(path) {
[
'push',
'reset',
'move',
'moveTo',
'line',
'lineTo',
'curve',
'curveTo',
'arc',
'arcTo',
'counterArc',
'counterArcTo',
'close'
].forEach((methodName) => { this[methodName] = () => this; });
this.path = path || [];
}
toJSON() {
return JSON.stringify(this.path);
}
}
module.exports = Path;