MCPcopy Create free account
hub / github.com/hackmdio/codimd / extend

Function extend

public/js/slide.js:26–38  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

24})
25
26function extend () {
27 const target = {}
28
29 for (const source of arguments) {
30 for (const key in source) {
31 if (Object.hasOwnProperty.call(source, key)) {
32 target[key] = source[key]
33 }
34 }
35 }
36
37 return target
38}
39
40// Optional libraries used to extend on reveal.js
41const deps = [{

Callers 1

slide.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected