regexper-static/src/js/parser/javascript/any_character.js

12 lines
212 B
JavaScript
Raw Normal View History

import _ from 'lodash';
import Base from './base.js';
export default _.extend({}, Base, {
type: 'any-character',
_render() {
2014-12-11 00:23:14 +00:00
this.renderLabel('any character');
return this.terminalRender();
}
});