Sid Gifari File Manager
🏠 Root
/
home
/
nradmin
/
public_html
/
wp-content
/
plugins
/
forminator
/
assets
/
js
/
front
/
calculator
/
symbol
/
📝 Editing: front.calculator.symbol.number.js
import FrontCalculatorSymbolAbstract from "./abstract/front.calculator.symbol.abstract"; /** * This class is the class that represents symbols of type "number". * Numbers are completely handled by the tokenizer/parser so there is no need to * create more than this concrete, empty number class that does not specify * a textual representation of numbers (numbers always consist of digits * and may include a single dot). */ export default class FrontCalculatorSymbolNumber extends FrontCalculatorSymbolAbstract { constructor() { super(); } }
💾 Save
❌ Cancel
Sid Gifari File Manager v1.0 | Terminal Auto-Sync Enabled | Current Path: /home/nradmin/public_html/wp-content/plugins/forminator/assets/js/front/calculator/symbol