Mike Gerwitz
1e5a0fb701
This was copied from a _very_ early version of node. The problem is that, for reasons not yet investigated, Node v12's EventEmitter (at least when extended by easejs) is causing data to be shared across instances. This kicks the can down the road a little bit. The goal is to eventually get rid of EventEmitter entirely. Here's the script used to do the conversion in this commit: git grep -l "require( 'events' )" -- src \ | while read f; do path=$( sed 's|src/||;s|[^/]\+|..|g' <<< "$(dirname "$f")" ) sed -i "s|require( 'events' )|require( '$path/events' )|" "$f" done |
||
---|---|---|
.. | ||
ResilientMemcache.js |