tolmach
v1.0.1
Published
Programming language classifier of a code for node.js
Downloads
1
Readme
tolmach
Programming language classifier based on natural classifier module.
Installation
$ npm install tolmach
Example
var tolmach = require('tolmach');
tolmach.detect('for item in items:');
// => "python"
tolmach.detect('#include <stdio.h>');
// => "c"
tolmach.detect('prices = items.map{ |i| i.price }');
// => "ruby"
Supported languages
c
csharp
fortran
go
haskell
java
javascript
lisp
lua
objective-c
perl
php
python
ruby
rust
shell
swift
vbnet