blob: 6736f1a9ca566eb30a72d788e753d5b68edb31b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/** @license MIT License (c) copyright 2013 original author or authors */
/**
* @author Brian Cavalier
*/
(function(define) { 'use strict';
define(function(require) {
// DEPRECATED: Use when/node instead
return require('../node');
});
}(typeof define === 'function' && define.amd ? define : function(factory) { module.exports = factory(require); }));
|