Current File : //usr/lib/node_modules/bower/lib/node_modules/mout/lang/isnt.js
var is = require('./is');

    /**
     * Check if both values are not identical/egal
     */
    function isnt(x, y){
        return !is(x, y);
    }

    module.exports = isnt;