UNPKG
liquor-tree-withoutdragndrop
Version:
latest (0.2.72)
0.2.72
0.2.71
0.2.70
A Vue.js tree component.
github.com/SelectCode/liquor-tree
SelectCode/liquor-tree
liquor-tree-withoutdragndrop
/
src
/
utils
/
assert.js
6 lines
(5 loc)
•
110 B
JavaScript
View Raw
1
2
3
4
5
6
export
default
function
assert
(
truth, message
) {
if
(truth ===
false
) {
throw
new
Error
(message) } }