node-structures
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "node-structures", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"author": { | ||
@@ -5,0 +5,0 @@ "name": "Albert Hambardzumyan", |
# node-structures | ||
[![Build Status](https://travis-ci.org/AlbertHambardzumyan/node-structures.svg?branch=master)](https://travis-ci.org/AlbertHambardzumyan/node-structures) | ||
[![npm](https://img.shields.io/npm/v/node-structures.svg)](https://www.npmjs.com/package/node-structures) | ||
[![npm](https://img.shields.io/npm/v/node-structures.svg)](https://www.npmjs.com/package/node-structures) | ||
[![Code Climate](https://codeclimate.com/github/AlbertHambardzumyan/node-structures/badges/gpa.svg)](https://codeclimate.com/github/AlbertHambardzumyan/node-structures) | ||
@@ -20,17 +21,12 @@ Basic Data Structures for use in JavaScript (server-side, client side) | ||
# Usage | ||
var Stack = require('node-structures').Stack; | ||
var stack = new Stack(); | ||
```` javascript | ||
const Stack = require('node-structures').Stack; | ||
let stack = new Stack(); | ||
stack.isEmpty(); | ||
stack.push(3); | ||
stack.peek(); | ||
stack.pop(); | ||
stack.size() | ||
```` | ||
# License | ||
MIT |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6560
32