UNPKG

potrace

Version:
14 lines (11 loc) 189 B
'use strict'; function Point(x, y) { this.x = x || 0; this.y = y || 0; } Point.prototype = { copy: function() { return new Point(this.x, this.y); } }; module.exports = Point;