const enclosingCircle = require('smallest-enclosing-circle') enclosingCircle([{x: 0, y: 0}, {x: 10, y: 10}, {x: 20, y: 20}]) // => { x: 10, y: 10, r: 14. ...