Sha256: 9cd7e9028d808f72447c111bab290658c76ca8b66ab114f9f2a2940e7f1dfa43
Contents?: true
Size: 591 Bytes
Versions: 26
Compression:
Stored size: 591 Bytes
Contents
import {config} from '../config.js'; /*! * Chai - isProxyEnabled helper * Copyright(c) 2012-2014 Jake Luer <jake@alogicalparadox.com> * MIT Licensed */ /** * ### .isProxyEnabled() * * Helper function to check if Chai's proxy protection feature is enabled. If * proxies are unsupported or disabled via the user's Chai config, then return * false. Otherwise, return true. * * @namespace Utils * @name isProxyEnabled * @returns {boolean} */ export function isProxyEnabled() { return config.useProxy && typeof Proxy !== 'undefined' && typeof Reflect !== 'undefined'; }
Version data entries
26 entries across 26 versions & 1 rubygems