Skip to content

Commit

Permalink
refactor: removed empty sources
Browse files Browse the repository at this point in the history
  • Loading branch information
CorentinTh committed Apr 16, 2022
1 parent dc76856 commit a14cac6
Show file tree
Hide file tree
Showing 11 changed files with 0 additions and 33 deletions.
3 changes: 0 additions & 3 deletions src/tools/bip39-generator/bip39-generator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,3 @@ const { copy: copyEntropy } = useCopy({ source: entropy, text: 'Entropy copied t
const { copy: copyPassphrase } = useCopy({ source: passphrase, text: 'Passphrase copied to the clipboard' })
</script>

<style lang="less" scoped>
</style>
3 changes: 0 additions & 3 deletions src/tools/color-converter/color-converter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,3 @@ function onInputUpdated(value: string, omit: string) {
onInputUpdated(hex.value, 'hex')
</script>

<style lang="less" scoped>
</style>
3 changes: 0 additions & 3 deletions src/tools/date-time-converter/date-time-converter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,3 @@ const formats = [
]
</script>

<style lang="less" scoped>
</style>
3 changes: 0 additions & 3 deletions src/tools/encryption/encryption.vue
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,3 @@ const decryptOutput = computed(() => algos[decryptAlgo.value].decrypt(decryptInp
</script>

<style lang="less" scoped>
</style>
3 changes: 0 additions & 3 deletions src/tools/hash-text/hash-text.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,3 @@ const hashedText = computed(() => algos[algo.value](clearText.value).toString())
const { copy } = useCopy({ source: hashedText, text: 'Hash copied to the clipboard' })
</script>

<style lang="less" scoped>
</style>
3 changes: 0 additions & 3 deletions src/tools/lorem-ipsum-generator/lorem-ipsum-generator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,3 @@ const { copy } = useCopy({ source: loremIpsumText, text: 'Lorem ipsum copied to
</script>

<style lang="less" scoped>
</style>
3 changes: 0 additions & 3 deletions src/tools/qr-code-generator/qr-code-generator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,3 @@ const { qrcode } = useQRCode({
const { download } = useDownloadFileFromBase64({ source: qrcode, filename: 'qr-code.png' })
</script>

<style lang="less" scoped>
</style>
3 changes: 0 additions & 3 deletions src/tools/text-statistics/text-statistics.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,3 @@ import { getStringSizeInBytes } from './text-statistics.service'
const text = ref('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Commodo risus faucibus varius volutpat habitasse suspendisse justo inceptos primis mi. Fusce molestie lorem bibendum habitasse litora adipiscing turpis egestas quis nec. Non id conubia vulputate etiam iaculis vitae venenatis hac fusce condimentum. Adipiscing pellentesque venenatis ornare pulvinar tempus hac montes velit erat convallis.')
</script>

<style lang="less" scoped>
</style>
3 changes: 0 additions & 3 deletions src/tools/token-generator/token-generator.tool.vue
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,3 @@ function refreshToken() {
refreshToken()
</script>

<style lang="less" scoped>
</style>
3 changes: 0 additions & 3 deletions src/tools/url-encoder/url-encoder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,3 @@ const { copy: copyDecoded } = useCopy({ source: decodeOutput, text: 'Decoded str
</script>

<style lang="less" scoped>
</style>
3 changes: 0 additions & 3 deletions src/tools/uuid-generator/uuid-generator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,3 @@ const { copy } = useCopy({ source: uuids, text: 'UUIDs copied to the clipboard'
refreshUUIDs()
</script>

<style lang="less" scoped>
</style>

0 comments on commit a14cac6

Please sign in to comment.