Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.221.21.111
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
gulp-notify /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
gulp.png
9.16
KB
-rw-rw-r--
2022-08-30 11:49
gulpfile.js
3.96
KB
-rw-rw-r--
2022-08-30 11:49
jshint.js
800
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
var jshint = require('gulp-jshint'); var notify = require('gulp-notify'); var gulp = require('gulp'); gulp.task('lint', function() { gulp.src('/src/**/*.js') .pipe(jshint()) // Use gulp-notify as jshint reporter .pipe(notify(function (file) { if (file.jshint.success) { // Don't show something if success return false; } var errors = file.jshint.results.map(function (data) { if (data.error) { return "(" + data.error.line + ':' + data.error.character + ') ' + data.error.reason; } }).join("\n"); return file.relative + " (" + file.jshint.results.length + " errors)\n" + errors; })); }); gulp.task('watch', ['lint'], function() { gulp.watch('/src/**/*.js', ['lint']); }); gulp.task('default', ['lint']);