From e516f89519aaf0ccc82d13f20df015a57da97b89 Mon Sep 17 00:00:00 2001 From: ciolt Date: Fri, 22 Feb 2019 23:42:21 -0500 Subject: [PATCH] remove example.js --- example.js | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 example.js diff --git a/example.js b/example.js deleted file mode 100644 index 4c5a2a0..0000000 --- a/example.js +++ /dev/null @@ -1,14 +0,0 @@ -// Dependencies -var StdColor = require('../lib') - -// Get the flat red -console.log(StdColor(255, 0, 0)) -// => [211, 84, 0] - -// Same thing, but using a rgb array -console.log(StdColor([255, 0, 0])) -// => [211, 84, 0] - -// Still same color but using hex color -console.log(StdColor('#f00')) -// => [211, 84, 0]