Your IP : 216.73.216.17


Current Path : /etc/kibana/node_modules/to-source-code/
Upload File :
Current File : //etc/kibana/node_modules/to-source-code/index.js

'use strict';

var isNil = require('is-nil');

module.exports = function (func) {

  if (!isNil(func)) {

    try {
      return Function.prototype.toString.call(func);
    } catch (e) {}

    try {
      return (func + '');
    } catch (e) {}
  }

  return '';
};