Skip to content

Commit

Permalink
feat: Export-4BitJS ( Fixes #32 )
Browse files Browse the repository at this point in the history
Fixing Quoting
  • Loading branch information
James Brundage committed Jan 15, 2024
1 parent d2deaf4 commit 378e301
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Export-4BitJS.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@ function Export-4BitJS {
@"
var defaultTheme = "$DefaultColorScheme";
function GetColorSchemeList() {
return [
"'$($ColorSchemeName -join "','")'"
]
return [
"$($ColorSchemeName -join '","')"
]
}
function GetDarkColorSchemes() {
return [
"'$($DarkColorSchemeName -join "','")'"
]
return [
"$($DarkColorSchemeName -join '","')"
]
}
function GetLightColorSchemes() {
return [
"'$($LightColorSchemeName -join "','")'"
]
return [
"$($LightColorSchemeName -join '","')"
]
}
function feelingLucky() {
Expand Down

0 comments on commit 378e301

Please sign in to comment.