f6cd6a11363d5a0bd6fcf41741e3fce724c3a254
[yaffs-website] / 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.');