1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 04:05:01 +00:00
mon-entreprise/source/utils.js

7 lines
270 B
JavaScript
Raw Normal View History

export let capitalise0 = name => name[0].toUpperCase() + name.slice(1)
2018-01-15 16:47:49 +01:00
export let getJsScriptAttribute = attribute => () => {
let script =
document.currentScript || [...document.getElementsByTagName('script')].pop()
return script && script.getAttribute(attribute)
}