(e)
| 19096 | }); |
| 19097 | |
| 19098 | function prepare_error(e) { |
| 19099 | if (!e) |
| 19100 | return ''; |
| 19101 | else if (e instanceof ErrorBuilder) |
| 19102 | return e.plain(); |
| 19103 | else if (DEBUG) |
| 19104 | return e.stack ? e.stack : e.toString(); |
| 19105 | } |
| 19106 | |
| 19107 | function prepare_filename(name) { |
| 19108 | return name[0] === '@' ? (F.isWindows ? U.combine(CONF.directory_temp, name.substring(1)) : F.path.package(name.substring(1))) : U.combine('/', name); |
no outgoing calls
no test coverage detected