UNPKG

log4js2

Version:

[![Build Status](https://travis-ci.org/anigenero/log4js2.svg?branch=master)](https://travis-ci.org/anigenero/log4js2) [![codecov](https://codecov.io/gh/anigenero/log4js2/branch/master/graph/badge.svg)](https://codecov.io/gh/anigenero/log4js2)

17 lines (16 loc) 412 B
/** * Gets the function name of the specified function * * @function * @param {Function} func * * @returns {string} */ export declare const getFunctionName: (func: () => any) => string; /** * Determines whether or not the value is an array. Return false is null * * @param {any} value * @returns {boolean} true if non-null array, else false */ export declare const isArray: <T>(value: T) => boolean;