1.1.3 • Published 4 years ago

get-cube v1.1.3

Weekly downloads
1
License
MIT
Repository
-
Last release
4 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

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.0.15

4 years ago

1.0.14

4 years ago

1.1.0

4 years ago

1.0.13

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.12

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago