From 75b0d4cdc7caa8477d16f9b86dc961674951cd59 Mon Sep 17 00:00:00 2001 From: Pitchaya Boonsarngsuk <2285135b@student.gla.ac.uk> Date: Fri, 2 Feb 2018 10:18:19 +0000 Subject: [PATCH] =?UTF-8?q?=E0=B9=80=E0=B8=9B=E0=B8=A5=E0=B8=B5=E0=B9=88?= =?UTF-8?q?=E0=B8=A2=E0=B8=99=E0=B8=8A=E0=B8=B7=E0=B9=88=E0=B8=AD=E0=B9=84?= =?UTF-8?q?=E0=B8=9F=E0=B8=A5=E0=B9=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.js | 2 +- src/{neighbourSamplingDistance.js => neighbourSampling.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{neighbourSamplingDistance.js => neighbourSampling.js} (100%) diff --git a/index.js b/index.js index 2a5b330..2228c38 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,5 @@ export {default as forceNeighbourSampling} - from "./src/neighbourSamplingDistance"; + from "./src/neighbourSampling"; /* export { default as forceBarnesHut} from "./src/barnesHut"; diff --git a/src/neighbourSamplingDistance.js b/src/neighbourSampling.js similarity index 100% rename from src/neighbourSamplingDistance.js rename to src/neighbourSampling.js