handlebars-source 4.3.5 → 4.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of handlebars-source might be problematic. Click here for more details.
- checksums.yaml +4 -4
 - data/handlebars.js +609 -385
 - data/handlebars.runtime.js +14 -3
 - metadata +2 -2
 
    
        data/handlebars.runtime.js
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /**!
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
             @license
         
     | 
| 
       4 
     | 
    
         
            -
             handlebars v4. 
     | 
| 
      
 4 
     | 
    
         
            +
             handlebars v4.4.0
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
6 
     | 
    
         
             
            Copyright (C) 2011-2017 by Yehuda Katz
         
     | 
| 
       7 
7 
     | 
    
         | 
| 
         @@ -207,7 +207,7 @@ return /******/ (function(modules) { // webpackBootstrap 
     | 
|
| 
       207 
207 
     | 
    
         | 
| 
       208 
208 
     | 
    
         
             
            	var _logger2 = _interopRequireDefault(_logger);
         
     | 
| 
       209 
209 
     | 
    
         | 
| 
       210 
     | 
    
         
            -
            	var VERSION = '4. 
     | 
| 
      
 210 
     | 
    
         
            +
            	var VERSION = '4.4.0';
         
     | 
| 
       211 
211 
     | 
    
         
             
            	exports.VERSION = VERSION;
         
     | 
| 
       212 
212 
     | 
    
         
             
            	var COMPILER_REVISION = 8;
         
     | 
| 
       213 
213 
     | 
    
         
             
            	exports.COMPILER_REVISION = COMPILER_REVISION;
         
     | 
| 
         @@ -620,7 +620,7 @@ return /******/ (function(modules) { // webpackBootstrap 
     | 
|
| 
       620 
620 
     | 
    
         
             
            /* 11 */
         
     | 
| 
       621 
621 
     | 
    
         
             
            /***/ (function(module, exports, __webpack_require__) {
         
     | 
| 
       622 
622 
     | 
    
         | 
| 
       623 
     | 
    
         
            -
            	'use strict';
         
     | 
| 
      
 623 
     | 
    
         
            +
            	/* WEBPACK VAR INJECTION */(function(global) {'use strict';
         
     | 
| 
       624 
624 
     | 
    
         | 
| 
       625 
625 
     | 
    
         
             
            	var _interopRequireDefault = __webpack_require__(2)['default'];
         
     | 
| 
       626 
626 
     | 
    
         | 
| 
         @@ -682,6 +682,16 @@ return /******/ (function(modules) { // webpackBootstrap 
     | 
|
| 
       682 
682 
     | 
    
         
             
            	            execIteration(i, i, i === context.length - 1);
         
     | 
| 
       683 
683 
     | 
    
         
             
            	          }
         
     | 
| 
       684 
684 
     | 
    
         
             
            	        }
         
     | 
| 
      
 685 
     | 
    
         
            +
            	      } else if (global.Symbol && context[global.Symbol.iterator]) {
         
     | 
| 
      
 686 
     | 
    
         
            +
            	        var newContext = [];
         
     | 
| 
      
 687 
     | 
    
         
            +
            	        var iterator = context[global.Symbol.iterator]();
         
     | 
| 
      
 688 
     | 
    
         
            +
            	        for (var it = iterator.next(); !it.done; it = iterator.next()) {
         
     | 
| 
      
 689 
     | 
    
         
            +
            	          newContext.push(it.value);
         
     | 
| 
      
 690 
     | 
    
         
            +
            	        }
         
     | 
| 
      
 691 
     | 
    
         
            +
            	        context = newContext;
         
     | 
| 
      
 692 
     | 
    
         
            +
            	        for (var j = context.length; i < j; i++) {
         
     | 
| 
      
 693 
     | 
    
         
            +
            	          execIteration(i, i, i === context.length - 1);
         
     | 
| 
      
 694 
     | 
    
         
            +
            	        }
         
     | 
| 
       685 
695 
     | 
    
         
             
            	      } else {
         
     | 
| 
       686 
696 
     | 
    
         
             
            	        var priorKey = undefined;
         
     | 
| 
       687 
697 
     | 
    
         | 
| 
         @@ -712,6 +722,7 @@ return /******/ (function(modules) { // webpackBootstrap 
     | 
|
| 
       712 
722 
     | 
    
         
             
            	};
         
     | 
| 
       713 
723 
     | 
    
         | 
| 
       714 
724 
     | 
    
         
             
            	module.exports = exports['default'];
         
     | 
| 
      
 725 
     | 
    
         
            +
            	/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
         
     | 
| 
       715 
726 
     | 
    
         | 
| 
       716 
727 
     | 
    
         
             
            /***/ }),
         
     | 
| 
       717 
728 
     | 
    
         
             
            /* 12 */
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: handlebars-source
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 4. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 4.4.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Yehuda Katz
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2019- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2019-09-29 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies: []
         
     | 
| 
       13 
13 
     | 
    
         
             
            description: Handlebars.js source code wrapper for (pre)compilation gems.
         
     | 
| 
       14 
14 
     | 
    
         
             
            email:
         
     |