UNPKG

tianma-unicorn

Version:

The Pegasus module for Unicorn System.

11 lines (10 loc) 257 B
module.exports = function(arr){ var cache = {}, result = []; arr.forEach(function(item){ if(!cache[item]){ cache[item] = true; result.push(item); } }); return result; }