1d2040d7d183bd65e8444173be32ff2294e0d5534214e1af948347f736dac5db37f496649ecb70a947c442816381d4497ece1c853fdf2943df7ff79ffe5bee 474 B

123456789101112131415161718
  1. /**
  2. * Copyright (c) 2015 ESHA Research
  3. * Dual licensed under the MIT and GPL licenses:
  4. * http://www.opensource.org/licenses/mit-license.php
  5. * http://www.gnu.org/licenses/gpl.html
  6. *
  7. * Store nothing when storage is not supported.
  8. *
  9. * Status: ALPHA - due to being of doubtful propriety
  10. */
  11. ;(function(_) {
  12. var _set = _.set;
  13. _.set = function(area) {
  14. return area.name === 'fake' ? undefined : _set.apply(this, arguments);
  15. };
  16. })(window.store._);