8000 GitHub - HowProgrammingWorks/Pool at 6d8791cac7baf9f1ee8d10a549a112ac374d89cf
[go: up one dir, main page]

Skip to content

HowProgrammingWorks/Pool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Object Pool

See: 4-improved.js

Signature poolify(factory, min, norm, max)

  • factory - call to instantiate pool item
  • min - minimum amount to allocate new
  • norm - preallocated amount
  • max - maximum amount to limit pool
0