strict.js 333 B

12345678910111213
  1. /*
  2. Copyright (c) 2014 Google Inc. All rights reserved.
  3. Use of this source code is governed by the MIT License, available in this package's LICENSE file
  4. or at http://opensource.org/licenses/MIT.
  5. */
  6. exports.before = function before() {
  7. return '"use strict";';
  8. };
  9. exports.after = function after() {
  10. return '';
  11. };