Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nuxt-change-case

Package Overview
Dependencies
Maintainers
0
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nuxt-change-case

change-case integration as nuxt module.

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
41
decreased by-34.92%
Maintainers
0
Weekly downloads
 
Created
Source

nuxt-change-case

npm version npm downloads Codecov License

change-case-all@1.0.15 implementation as nuxt module.

📖 Release Notes

Setup

  1. Add nuxt-change-case dependency to your project
yarn add nuxt-change-case # or npm install nuxt-change-case
  1. Add nuxt-change-case to the modules section of nuxt.config.js
{
  modules: [
    'nuxt-change-case'
  ]
}

Usage

<h1> {{ $pascalCase('hello world') }} </h1>
// HelloWorld
<h1> {{ $lowerCase('Çocuk Adam Bak Buraya') }} </h1>
// çocuk adam bak buraya
<h1> {{ $localeUpperCase('şemsi paşa pasajında sesi büzüşesiceler', 'tr') </h1>
// ŞEMSİ PAŞA PASAJINDA SESİ BÜZÜŞESİCELER
<h1> {{ $localeLowerCase('KENAN MEMEDOV! SOVIETSKA ARMY', 'az') </h1>
// kenan memedov! sovietska army
// In asyncData
asyncData ({ $paramCase }) {
  console.log($paramCase('nuxt change case'))
}
// nuxt-change-case

Please check full documentation. Same as change-case-all@1.0.15.


Additional Converters

These methods are custom-written methods on this module that are not provided by change-case-all.

<h1> {{ $localeCapitalCase('benim adım ibrahim yılmaz', 'tr') </h1>
// Benim Adım İbrahim Yılmaz

Development

  1. Clone this repository
  2. Install dependencies using yarn install or npm install
  3. Start development server using npm run dev

License

MIT License

Copyright (c) selimdoyranli selimdoyranli@gmail.com

Keywords

FAQs

Package last updated on 07 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc