underscore.js 257 B

1234567891011
  1. /**
  2. * Work around for Require, Radio, and WordPress.
  3. *
  4. * Returns the WordPress-loaded version of Underscore for use with things that need it and use Require.
  5. *
  6. * @since 3.0
  7. * @return Object Underscore Object
  8. */
  9. define( function() {
  10. return _;
  11. } );