mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 08:07:50 +00:00
Fix code styling in _.template doc example. [ci skip]
This commit is contained in:
@@ -10312,10 +10312,10 @@
|
||||
* var compiled = _.template('hi <%= data.user %>!', { 'variable': 'data' });
|
||||
* compiled.source;
|
||||
* // => function(data) {
|
||||
* var __t, __p = '';
|
||||
* __p += 'hi ' + ((__t = ( data.user )) == null ? '' : __t) + '!';
|
||||
* return __p;
|
||||
* }
|
||||
* // var __t, __p = '';
|
||||
* // __p += 'hi ' + ((__t = ( data.user )) == null ? '' : __t) + '!';
|
||||
* // return __p;
|
||||
* // }
|
||||
*
|
||||
* // using the `source` property to inline compiled templates for meaningful
|
||||
* // line numbers in error messages and a stack trace
|
||||
|
||||
Reference in New Issue
Block a user