]> git.r.bdr.sh - rbdr/dotfiles/blob
4390a10863326bf64053599a30212d8794746430
[rbdr/dotfiles] /
1 'use strict';
2
3 module.exports = function () {
4 var of = Array.of, result;
5 if (typeof of !== 'function') return false;
6 result = of('foo', 'bar');
7 return Boolean(result && (result[1] === 'bar'));
8 };