flexyford / impagination

A lazy data layer for your paged records
102 stars 7 forks source link

binary-search-tree uses node.js util module #40

Closed deive closed 6 years ago

deive commented 6 years ago

Hi, your dependency binary-search-tree uses the node.js util module, so this is not working in react-native. See https://github.com/louischatriot/node-binary-search-tree/issues/14 To get around this you can:

  1. npm install util --save
  2. Use my pull that just copies the single required method to binary-search-tree, so it doesn't require util - https://github.com/louischatriot/node-binary-search-tree/pull/17
flexyford commented 6 years ago

Thanks for your help. fixed in #44