1.1.3 • Published 5 years ago

get-cube v1.1.3

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

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.0.15

5 years ago

1.0.14

5 years ago

1.1.0

5 years ago

1.0.13

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.12

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago