Blame view

node_modules/center-align/utils.js 757 Bytes
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  'use strict';
  
  /**
   * Lazily-required module dependencies (makes the application
   * faster)
   */
  
  var utils = require('lazy-cache')(require);
  
  /**
   * Temporarily re-assign `require` to trick browserify and
   * webpack into reconizing lazy dependencies.
   *
   * This tiny bit of ugliness has the huge dual advantage of
   * only loading modules that are actually called at some
   * point in the lifecycle of the application, whilst also
   * allowing browserify and webpack to find modules that
   * are depended on but never actually called.
   */
  
  var fn = require;
  require = utils;
  
  /**
   * Lazily required module dependencies
   */
  
  require('align-text', 'align');
  
  /**
   * Restore `require`
   */
  
  require = fn;
  
  /**
   * Expose `utils` modules
   */
  
  module.exports = utils;