Skip to content

Instantly share code, notes, and snippets.

@MichaelHabib
Created December 21, 2020 06:45
Show Gist options
  • Save MichaelHabib/c1943d4fb6d22eb18189aeb3b0b3e5ba to your computer and use it in GitHub Desktop.
Save MichaelHabib/c1943d4fb6d22eb18189aeb3b0b3e5ba to your computer and use it in GitHub Desktop.
name: MH_Seadan_Snippets
description: ''
host: EXCEL
api_set: {}
script:
content: |
/** @CustomFunction */
function regex_format_sku(value) {
if (!value) {
return "";
}
return value
.toString()
.toLowerCase()
.replace(/\//g, "_")
.replace(/[^a-z0-9\-\/\_]/g, "-");
}
language: typescript
libraries: |
https://appsforoffice.microsoft.com/lib/1/hosted/office.js
@types/office-js
office-ui-fabric-js@1.4.0/dist/css/fabric.min.css
office-ui-fabric-js@1.4.0/dist/css/fabric.components.min.css
core-js@2.4.1/client/core.min.js
@types/core-js
jquery@3.1.1
@types/jquery@3.3.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment