File tree 2 files changed +4
-4
lines changed
lib/node_modules/@stdlib/plot/sparklines/unicode/base
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ var str = sparkline.toString();
156
156
157
157
## Examples
158
158
159
- <!-- eslint-disable no-restricted-syntax -->
159
+ <!-- eslint-disable no-restricted-syntax, no-underscore-dangle -->
160
160
161
161
<!-- eslint no-undef: "error" -->
162
162
@@ -179,7 +179,7 @@ function Chart( opts ) {
179
179
inherit ( Chart, Sparkline );
180
180
181
181
// Implement a custom render method:
182
- Chart .prototype .render = function render () {
182
+ Chart .prototype ._render = function render () {
183
183
var str;
184
184
var i;
185
185
Original file line number Diff line number Diff line change 16
16
* limitations under the License.
17
17
*/
18
18
19
- /* eslint-disable no-restricted-syntax */
19
+ /* eslint-disable no-restricted-syntax, no-underscore-dangle */
20
20
21
21
'use strict' ;
22
22
@@ -38,7 +38,7 @@ function Chart( opts ) {
38
38
inherit ( Chart , Sparkline ) ;
39
39
40
40
// Implement a custom render method:
41
- Chart . prototype . render = function render ( ) {
41
+ Chart . prototype . _render = function render ( ) {
42
42
var str ;
43
43
var i ;
44
44
You can’t perform that action at this time.
0 commit comments