123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.getFuncName = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
- 'use strict';
- /* !
- * Chai - getFuncName utility
- * Copyright(c) 2012-2016 Jake Luer <jake@alogicalparadox.com>
- * MIT Licensed
- */
- /**
- * ### .getFuncName(constructorFn)
- *
- * Returns the name of a function.
- * When a non-function instance is passed, returns `null`.
- * This also includes a polyfill function if `aFunc.name` is not defined.
- *
- * @name getFuncName
- * @param {Function} funct
- * @namespace Utils
- * @api public
- */
- var toString = Function.prototype.toString;
- var functionNameMatch = /\s*function(?:\s|\s*\/\*[^(?:*\/)]+\*\/\s*)*([^\s\(\/]+)/;
- function getFuncName(aFunc) {
- if (typeof aFunc !== 'function') {
- return null;
- }
- var name = '';
- if (typeof Function.prototype.name === 'undefined' && typeof aFunc.name === 'undefined') {
- // Here we run a polyfill if Function does not support the `name` property and if aFunc.name is not defined
- var match = toString.call(aFunc).match(functionNameMatch);
- if (match) {
- name = match[1];
- }
- } else {
- // If we've got a `name` property we just use it
- name = aFunc.name;
- }
- return name;
- }
- module.exports = getFuncName;
- },{}]},{},[1])(1)
- });
|