File: index.js

Recommend this page to a friend!
  Classes of Ovidiu Bokar   Social Media Sharing   index.js   Download  
File: index.js
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Social Media Sharing
Create social media sharing links
Author: By
Last change: Update of index.js
Date: 2 years ago
Size: 249 bytes
 

Contents

Class file image Download
"use strict"; var Calculator = (function () { function Calculator() { } Calculator.prototype.add = function (x, y) { return (x + y); }; return Calculator; }()); exports.__esModule = true; exports["default"] = Calculator;