setup integration test

This commit is contained in:
softprops 2019-10-20 17:50:35 -04:00
parent 1a522d88d8
commit 845942e04a
555 changed files with 103819 additions and 1 deletions
node_modules/bottleneck/src

38
node_modules/bottleneck/src/DLList.coffee generated vendored Normal file
View file

@ -0,0 +1,38 @@
class DLList
constructor: (@incr, @decr) ->
@_first = null
@_last = null
@length = 0
push: (value) ->
@length++
@incr?()
node = { value, prev: @_last, next: null }
if @_last?
@_last.next = node
@_last = node
else @_first = @_last = node
undefined
shift: () ->
if not @_first? then return
else
@length--
@decr?()
value = @_first.value
if (@_first = @_first.next)?
@_first.prev = null
else
@_last = null
value
first: () -> if @_first? then @_first.value
getArray: () ->
node = @_first
while node? then (ref = node; node = node.next; ref.value)
forEachShift: (cb) ->
node = @shift()
while node? then (cb node; node = @shift())
undefined
debug: () ->
node = @_first
while node? then (ref = node; node = node.next; { value: ref.value, prev: ref.prev?.value, next: ref.next?.value })
module.exports = DLList