+1
-1
| { | ||
| "name": "nth-root", | ||
| "description": "Get the nth root of a number.", | ||
| "version": "0.1.0", | ||
| "version": "0.1.1", | ||
| "homepage": "https://github.com/jonschlinkert/nth-root", | ||
@@ -6,0 +6,0 @@ "author": { |
+6
-6
@@ -20,5 +20,5 @@ # nth-root [](http://badge.fury.io/js/nth-root) | ||
| ```js | ||
| nthRoot(16), | ||
| nthRoot(16); | ||
| //=> '4' | ||
| nthRoot(-16), | ||
| nthRoot(-16); | ||
| //=> '-4' | ||
@@ -30,9 +30,9 @@ ``` | ||
| ```js | ||
| nthRoot(-27, 3), | ||
| nthRoot(-27, 3); | ||
| //=> '-3' | ||
| nthRoot(27, 3), | ||
| nthRoot(27, 3); | ||
| //=> '3' | ||
| nthRoot(-8, 3), | ||
| nthRoot(-8, 3); | ||
| //=> '-2' | ||
| nthRoot(8, 3), | ||
| nthRoot(8, 3); | ||
| //=> '2' | ||
@@ -39,0 +39,0 @@ ``` |