
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@drorgl/linkedlist
Advanced tools
LinkedList is a data structure which implements an array friendly interface
Note: This is a fork of linkedlist package (originally by Kilian Ciuffolo) converted to typescript and sprinked with documentation
Linked List Data Structure with Array Friendly Interface
export
class
LinkedList
template
T type of items to store in the list
■ T
● at: get = this.get
Defined in LinkedList.ts:63
see get
memberof
LinkedList
● get current(): T
Defined in LinkedList.ts:43
Get Current Value in List Modified by push, pop, shift, unshiftCurrent, remove, next and resetCursor
readonly
type
{T}
memberof
LinkedList
Returns: T
● get head(): T
Defined in LinkedList.ts:20
Get First Value in List
readonly
type
{T} type of values in the list
memberof
LinkedList
Returns: T
● get length(): number
Defined in LinkedList.ts:54
Get Number of elements in List
readonly
type
{number}
memberof
LinkedList
Returns: number
● get tail(): T
Defined in LinkedList.ts:31
Get Last Value in List
readonly
type
{T}
memberof
LinkedList
Returns: T
▸ get(index
: number): T
Defined in LinkedList.ts:80
Retrieve the value at index location
memberof
LinkedList
Parameters:
Name | Type | Description |
---|---|---|
index | number | location in the list |
Returns: T
▸ next(): T
Defined in LinkedList.ts:250
Retrieve the next element value and advance current pointer
memberof
LinkedList
Returns: T
▸ pop(): T
Defined in LinkedList.ts:120
Pop a value from the end
memberof
LinkedList
Returns: T
▸ push(data
: T
): void
Defined in LinkedList.ts:104
Push a value at the end
memberof
LinkedList
Parameters:
Name | Type |
---|---|
data | T |
Returns: void
▸ removeCurrent(): T
Defined in LinkedList.ts:217
Remove current element
memberof
LinkedList
Returns: T
▸ resetCursor(): LinkedList‹T
›
Defined in LinkedList.ts:266
Resets the cursor
memberof
LinkedList
Returns: LinkedList‹T
›
▸ set(index
: number, value
: T
): T
Defined in LinkedList.ts:279
Set the value of a certain position in the list
memberof
LinkedList
Parameters:
Name | Type |
---|---|
index | number |
value | T |
Returns: T
▸ shift(): T
Defined in LinkedList.ts:145
Removes the first element from the list and return the value
memberof
LinkedList
Returns: T
▸ unshift(data
: T
): number
Defined in LinkedList.ts:171
Add an element to the start of the list and return the new length of the list
memberof
LinkedList
Parameters:
Name | Type |
---|---|
data | T |
Returns: number
▸ unshiftCurrent(): T
Defined in LinkedList.ts:187
Moves the current element to the start of the list
memberof
LinkedList
Returns: T
var LinkedList = require('linkedlist')
var list = new LinkedList()
for (var i = 0; i < 10; i++) {
list.push(i.toString())
}
console.log(list.head)
console.log(list.tail)
while (list.next()) {
console.log(list.current)
}
while (list.length) {
console.log(list.pop())
}
for (i = 0; i < 10; i++) {
list.unshift(i.toString())
}
while (list.length) {
console.log(list.shift())
}
for (i = 0; i < 10; i++) {
list.push(i.toString())
}
while (list.next()) {
if (list.current === '5') {
console.log('move "%s" to the start of the list', list.unshiftCurrent())
}
if (list.current === '8') {
console.log('remove "%s" current from the list', list.removeCurrent())
// now list.current points to '7'
// now list.next() points to '9'
list.resetCursor()
// now list.next() points to list.head
}
}
Look at the test suite for more example
This software is released under the MIT license cited below.
Copyright (c) 2010 Kilian Ciuffolo, me@nailik.org. All Rights Reserved.
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.
FAQs
Array like linked list with iterator
We found that @drorgl/linkedlist demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.