This file contains hidden or 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
| function convertUsdToKrw(usd, exchangeRate) { | |
| // ๋ฐ์ดํฐ ์ ์ (๋ฌธ์์ด์์ ์ซ์๋ง ์ถ์ถ) | |
| const numberUsd = parseFloat(usd) | |
| const numberRate = parseFloat(exchangeRate) | |
| // ๊ณ์ฐ (๋ฌ๋ฌ * ํ์จ) | |
| const calcValue = numberUsd * numberRate | |
| // ๋ฐ์ดํฐ ๊ฐ๊ณต (์์์ ์ ๊ฑฐ ๋ฐ ์ ์ํ) | |
| const result = parseInt(calcValue, 10) |
This file contains hidden or 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
| { | |
| "clientName": "Thunder Client", | |
| "collectionName": "DummyJSON API", | |
| "collectionId": "193db17a-7a2c-4d60-b975-56eb254bad93", | |
| "dateExported": "2025-07-14T19:06:22.745Z", | |
| "version": "1.2", | |
| "folders": [], | |
| "requests": [ | |
| { | |
| "_id": "4bb48847-62b7-4ae9-a433-bbd1f9cd4192", |
This file contains hidden or 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
| @layer components { | |
| .Product { | |
| --padding: 8px; | |
| --round: 4px; | |
| --border-weight: 0.5px; | |
| --gap: 12px; | |
| --color: 200, 15%, 42%; | |
| --border-color: hsla(var(--color), 0.3); | |
| --background-color: color-mix(in srgb, hsl(var(--color)) 2%, white 100%); |
This file contains hidden or 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
| [ | |
| { | |
| "id": "avatar-1", | |
| "filename": "man-01", | |
| "ext": "jpg", | |
| "name": "๋ฐ์ฑ์ค", | |
| "isOnline": false | |
| }, | |
| { | |
| "id": "avatar-2", |
This file contains hidden or 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
| <form method="get" action="/search"> | |
| <img src="search.png" alt="๋๋ณด๊ธฐ"> | |
| <br> | |
| <label> | |
| ๊ฒ์์ด | |
| <input name="term" type="search"> | |
| </label> | |
| <button type="submit">๊ฒ์</button> | |
| </form> |
This file contains hidden or 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
| :root { | |
| --primary-rgb: 8, 126, 164; | |
| --primary-rgba: var(--primary-rgb), 1; | |
| --forground-rgb: 10, 24, 48; | |
| --forground-rgba: var(--forground-rgb), 1; | |
| --background-rgb: 200, 245, 255; | |
| --background-rgba: var(--background-rgb), 0.3; | |
| --inner-space: 8px 16px; | |
| --spacing: 4px; | |
| --rounded: 4px; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| import { readFile, writeFile } from 'node:fs/promises'; | |
| import { existsSync, mkdirSync } from 'node:fs'; | |
| import { resolve } from 'node:path'; | |
| import { argv } from 'node:process'; | |
| const { cssDir, entryFile, outDir, outFile } = parseOptions(); | |
| const CSS_DIR = cssDir ?? 'src'; | |
| const ENTRY_FILE = entryFile ?? 'main.css'; | |
| const OUTPUT_DIR = outDir ?? 'styles'; |
This file contains hidden or 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
| @use "sass:meta" as *; | |
| @use "sass:list"; | |
| @use "sass:string"; | |
| @function get-value($props, $key) { | |
| $index: list.index($props, $key); | |
| @if $index != null { | |
| $value: list.nth($props, $index + 1); | |
| @return if(type-of($value) != string, $value, string.unquote($value)); | |
| } @else { |
This file contains hidden or 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
| /* eslint-disable no-useless-escape */ | |
| /* -------------------------------------------------------------------------- */ | |
| // ์์ด๋ ์ฒดํฌ ์ ํธ๋ฆฌํฐ | |
| // โธ 5 ~ 20์ โ ์๋ฌธ, ์ซ์ ์กฐํฉ | |
| /* -------------------------------------------------------------------------- */ | |
| export const isId = (value, { min = 4, max = 19 } = {}) => { | |
| const regExp = new RegExp(`^[a-z]+[a-z0-9]{${min},${max}}$`, 'g'); | |
| return regExp.test(value); |
NewerOlder