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

c3

Package Overview
Dependencies
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

c3

C3 linearization algorithm


Version published
Weekly downloads
77K
increased by17.91%
Maintainers
1
Weekly downloads
 
Created
Source

c3 Build Status

An implementation of the C3 linearization algorithm.

Getting Started

Install c3

npm install c3

Usage

var assert = require('assert')
  , c3 = require('c3')

var c = c3('a')
c.add('a', 'b')
c.add('b', 'c')
assert.deepEqual(c.run(), ['a', 'b', 'c'])

License

This work is licensed under the MIT License (see the LICENSE file).

The implementation is based on this document which was released under the Python 2.3 license.

Keywords

FAQs

Package last updated on 28 Apr 2012

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