From 3fe2165aed14d3424398e04bccb120f68114eab5 Mon Sep 17 00:00:00 2001 From: gorhill Date: Wed, 22 Apr 2015 19:09:39 -0400 Subject: [PATCH] prepare for v1.0.0 --- package.json | 2 +- rhill-voronoi-core.js | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a709e4a..8be13f3 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "type": "git", "url": "https://github.com/gorhill/Javascript-Voronoi.git" }, - "author": "", + "author": "Raymond Hill", "license": "MIT", "bugs": { "url": "https://github.com/gorhill/Javascript-Voronoi/issues" diff --git a/rhill-voronoi-core.js b/rhill-voronoi-core.js index 20e73a7..779b9d5 100644 --- a/rhill-voronoi-core.js +++ b/rhill-voronoi-core.js @@ -1717,4 +1717,8 @@ Voronoi.prototype.compute = function(sites, bbox) { return diagram; }; -if(typeof module !== 'undefined') module.exports = Voronoi; +/******************************************************************************/ + +if ( typeof module !== 'undefined' ) { + module.exports = Voronoi; +}