1.1.3 • Published 6 years ago

get-cube v1.1.3

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

get-cube

get-cube is an npm package for getting the cube of a number.

Installation

Download the get-cube package globally by running the below command:

npm install -g get-cube

Download the get-cube package locally by running the below command in your project folder:

npm install get-cube

Usage

Once you have installed the get-cube package globally, you can use it any time from CLI only by running the below command in any directory:

getCube <number to cube>

For example:

getCube 5 # returns 125

To use it within your project file:

var getCube = require("get-cube")

getCube(<number to cube>);

For example:

var getCube = require("get-cube")

getCube(5); // returns 125

Using without installation

Run the below command to use the get-cube package from CLI without installation:

npx get-cube <number to cube>

For example:

npx get-cube 5 # returns 125
1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.0.15

6 years ago

1.0.14

6 years ago

1.1.0

6 years ago

1.0.13

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.11

6 years ago

1.0.10

6 years ago

1.0.12

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago