Welcome to mirror list, hosted at ThFree Co, Russian Federation.

warn.js « utils « src « alpinejs « packages « alpinejs - github.com/gohugoio/hugo-mod-jslibs-dist.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b01f80b73e73385d8762ef314eca0c3c67279c82 (plain)
1
2
3
4

export function warn(message, ...args) {
    console.warn(`Alpine Warning: ${message}`, ...args)
}