office-addin
Version:
Development tools for creating Office Add-ins on Windows and Mac
18 lines (13 loc) • 577 B
JavaScript
/*!
* office-addin - Development tools for creating Office Add-ins on Windows and Mac
* v0.0.1 - https://github.com/timhall/office-addin - @license: MIT
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(factory((global.OfficeAddin = global.OfficeAddin || {})));
}(this, (function (exports) { 'use strict';
var version = "0.0.1";
exports.VERSION = version;
Object.defineProperty(exports, '__esModule', { value: true });
})));