-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- rename utils in docs to be lowercase (same as their actual names)
- Loading branch information
1 parent
cb3b52b
commit e9e8606
Showing
32 changed files
with
389 additions
and
86,954 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
export { default as AlignItem } from './align-item.svelte'; | ||
export { default as Animate } from './animate.svelte'; | ||
export { default as Blink } from './blink.svelte'; | ||
export { default as Debounce } from './debounce.svelte'; | ||
export { default as DeepCopy } from './deep-copy.svelte'; | ||
export { default as Empty } from './empty.svelte'; | ||
export { default as FormatDate } from './format-date.svelte'; | ||
export { default as Fuzzy } from './fuzzy.svelte'; | ||
export { default as GetMouseX } from './get-mouse-x.svelte.svelte'; | ||
export { default as GetMouseXY } from './get-mouse-xy.svelte.svelte'; | ||
export { default as GetMouseY } from './get-mouse-y.svelte.svelte'; | ||
export { default as Guid } from './guid.svelte'; | ||
export { default as IsInScrollable } from './is-in-scrollable.svelte'; | ||
export { default as IsMobile } from './is-mobile.svelte'; | ||
export { default as IsColorDark } from './is-color-dark.svelte'; | ||
export { default as Pluck } from './pluck.svelte'; | ||
export { default as RoundAmount } from './round-amount.svelte'; | ||
export { default as Throttle } from './throttle.svelte'; | ||
export { default as TimeAgo } from './time-ago.svelte'; | ||
export { default as alignItem } from './align-item.svelte'; | ||
export { default as animate } from './animate.svelte'; | ||
export { default as blink } from './blink.svelte'; | ||
export { default as debounce } from './debounce.svelte'; | ||
export { default as empty } from './empty.svelte'; | ||
export { default as isset } from './isset.svelte'; | ||
export { default as formatDate } from './format-date.svelte'; | ||
export { default as fuzzy } from './fuzzy.svelte'; | ||
export { default as getMouseX } from './get-mouse-x.svelte.svelte'; | ||
export { default as getMouseXY } from './get-mouse-xy.svelte.svelte'; | ||
export { default as getMouseY } from './get-mouse-y.svelte.svelte'; | ||
export { default as guid } from './guid.svelte'; | ||
export { default as isInScrollable } from './is-in-scrollable.svelte'; | ||
export { default as isMobile } from './is-mobile.svelte'; | ||
export { default as isColorDark } from './is-color-dark.svelte'; | ||
export { default as pluck } from './pluck.svelte'; | ||
export { default as roundAmount } from './round-amount.svelte'; | ||
export { default as throttle } from './throttle.svelte'; | ||
export { default as timeAgo } from './time-ago.svelte'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<Util id="isset" name="isset()" {example}> | ||
<p>Checks if a variable is <em>defined</em> and not <em>null</em>.</p> | ||
</Util> | ||
|
||
|
||
|
||
<script> | ||
import Util from '../Util.svelte'; | ||
const example = ` | ||
<script> | ||
if (isset(a)) { | ||
console.log('a is set'); | ||
} else { | ||
console.log('a is not set'); | ||
} | ||
</script> | ||
`; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.