Initial commit
[yaffs-website] / node_modules / loud-rejection / api.js
1 'use strict';
2 var util = require('util');
3 var currentlyUnhandled = require('currently-unhandled');
4
5 // WARNING: This undocumented API is subject to change.
6
7 module.exports = util.deprecate(function (process) {
8         return {
9                 currentlyUnhandled: currentlyUnhandled(process)
10         };
11 }, 'loudRejection/api is deprecated. Use the currently-unhandled module instead.');