UNPKG

npm-check-extras

Version:

CLI app to check for outdated and unused dependencies, and run update/delete action over selected ones

9 lines (8 loc) 244 B
import { atom } from 'nanostores'; export const $submittedInput = atom(''); export function setSubmittedInput(value) { $submittedInput.set(value); } export function addChar(value) { $submittedInput.set($submittedInput.get() + value); }