No Description

noop.js 132B

12345678
  1. define(function () {
  2. // Predicate-generating function. Often useful outside of Underscore.
  3. function noop(){}
  4. return noop;
  5. });