Every line of 'event.persist()' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
275 function persist () { 276 console.log("Waiting for objects to be saved ..."); 277 return core.persist(root); 278 }
15 export function persist(...args: any[]): any { 16 const [a, b, c] = args 17 if (a in types) { 18 return serializable(types[a](b)) 19 } else if (args.length === 1) { 20 return (target: any) => persistObject(target, a) 21 } else { 22 return serializable.apply(null, args) 23 } 24 }