"use strict";
export default function oct(s:string):number {
    return parseInt(s, 8);
}
module.exports = oct;
