New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

angular-slugs

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-slugs

Provides “slugification” for AngularJS in the form of a service, filter, and a directive.

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

angular-slug

Inspired by paulsmith's angular-slugify angular-slugs converts converts text into slugs or slugs into text with desired capitalization through a service and filter.

Installation

You can install the filter using Bower:

$ bower install angular-slugs

Or npm:

$ npm install angular-slugs

Then you have to include it in your HTML:

<script src="bower_components/angular-slugs/angular-slug.js"></script>
<script src="bower_components/angular-slugs/angular-unslug.js"></script>
<script src="bower_components/angular-slugs/angular-capitalize.js"></script>

And inject the desired modules into your application:

angular.module('webApp', ['capitalizer','slugifier','unslugifier']);

Service

The Slug service provides a single function slug that takes a string input as argument and returns the slugified string.

function MyCtrl($scope, Slug) {
    $scope.slug = function(input) {
        $scope.mySlug = Slug.slug(input);
    };
}

or

function MyCtrl($scope, Unslug) {
    $scope.unslug = function(input) {
        $scope.myUnslug = Unslug.slug(input);
    };
}

Filter

To use add a slug or unslug pipe filter in your AngularJS curly-brace expression.

Filters hello world to hello-world

<p>Slug: {{msg | slug}}</p>

Filters hello-world to hello world

<p>Unslug: {{msg | unslug}}</p>

Filters hello world to Hello world

<p>Unslug: {{msg | unslug| capitalize}}</p>

Filters hello world to Hello World

<p>Unslug: {{msg | unslug| capitalize:true}}</p>

Capitalize

You can use it like any other AngularJS filter:

First word only:

<p>{{msg | capitalize}}</p>

First Letter In All Words:

<p>{{msg | capitalize:true}}</p>

License

Copyright © 2016 Garrett M. team@cera.io

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

angular-slugs

Keywords

FAQs

Package last updated on 05 Mar 2016

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