1.3.3 • Published 6 years ago

peela v1.3.3

Weekly downloads
25
License
MIT
Repository
github
Last release
6 years ago

Peela

NPM VERSION CODACY BADGE CODECLIMATE-TEST-COVERAGE LICENSE

NODE VERSION TRAVIS CI BUILD BUILD STATUS DEVDEPENDENCY STATUS

NPM MONTHLY NPM YEARLY

NPM GRAPH1

Peela, a tiny (LIFO) Stack.

If you need a fast (FIFO) Queue, try Train.

Install

$ npm install peela [-g]
// clone repo
$ git clone git@github.com:rootslab/peela.git

require

var Peela = require( 'peela' );

See examples.

Run Tests

$ cd peela/
$ npm test

Constructor

Create an instance, optionally with an Array of elements.

Peela( [ Array elements ] )
// or
new Peela( [ Array elements ] )

Properties

// an array representing the stack.
Peela.stack : Array

Methods

Arguments within are optional.

/*
 * Push one or multiple objects into the stack. it uses
 * the same signature as Array#push.
 * It returns the current number of items.
 */
Peela#push( [ Object obj1 [, Object obj2 .. ] ] ) : Number

/*
 * Concatenate an Array to the stack head, optionally reversing it
 * before the operation.
 * It returns the current Peela instance.
 *
 * NOTE: It accepts a single argument, that could be also
 * a generic element.
 * NOTE: the action of reversing the array to concatenate, could be
 * useful if you want to re-push ( previously popped ) K items into
 * the stack, for example, try:
 * var p = Peela( [ 0, 1, 2, 3, 4 ] );
 * p.concat( p.pop( 3 ), true )
 */
Peela#concat( [ Array array [, Boolean reverse ] ] ) : Peela

/* 
 * Evict one or multiple elements, if a number k was specified,
 * it returns an array of K elements, with K <= k.
 * If k > size(), all elements are returned.
 *
 * NOTE: #pop() a single element from the stack, it does not
 * return an Array, but the element itself.
 * NOTE: For popping all elements you could also do Peela#pop( Infinity )
 */
Peela#pop( [ Number k ] ) : Array

/*
 * Get the head element or an element at a certain index.
 */
Peela#head( [ Number index ] ) : Object

/*
 * Get an element starting from the tail.
 */
Peela#tail( [ Number index ] ) : Object

/*
 * Get the stack size.
 */
Peela#size() : Number

/*
 * Return the index of an element in the stack, optionally
 * starting the search from an offset index.
 * If element was not found, it returns -1.
 */
Peela#indexOf( Object el [, Number offset ] ) : Object

/*
 * Empty the stack for default.
 * If bool is set to false, no action will be done.
 * It returns the number of elements evicted.
 */
Peela#flush( [ Boolean bool ] ) : Number

MIT License

Copyright (c) 2013-present < Guglielmo Ferri : 44gatti@gmail.com >

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

1.3.3

6 years ago

1.3.2

6 years ago

1.3.1

9 years ago

1.3.0

10 years ago

1.2.3

10 years ago

1.2.2

10 years ago

1.2.1

10 years ago

1.2.0

10 years ago

1.1.6

10 years ago

1.1.5

10 years ago

1.1.4

10 years ago

1.1.3

10 years ago

1.1.2

10 years ago

1.1.1

10 years ago

1.1.0

10 years ago

1.0.0

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago