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

11 lines
185 B
JavaScript
Raw Normal View History

import _ from 'lodash';
import Base from './base.js';
export default _.extend({}, Base, {
type: 'any-character',
_render() {
return this.renderLabel('any character');
}
});