0% found this document useful (0 votes)
24 views2 pages

Sem

Download as txt, pdf, or txt
Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1/ 2

var arr = [];

var getProto = Object.getPrototypeOf;

var slice = arr.slice;

var flat = arr.flat ? function( array ) {


return arr.flat.call( array );
} : function( array ) {
return arr.concat.apply( [], array );
};

var push = arr.push;


When a person is driving the
the vehicle met with an
accident then the vibrations of the
the vehicle is received by the vibration sensor and the sensor
acts as an accident detection module that further
send the
information to the microcontroller and the location of the
the vehicle is received through a GPS module. The received
information is sent to the microcontroller. The received
coordinate�s information is collected and is sent.

The web page is developed with python as frond end and Mysql as backend using
Django framework.Django is a high-level Python web framework that enables rapid
development of secure
and maintainable websites. Built by experienced developers, Django takes care of
much of the hassle of web development, so you can focus on writing your app without
needing to reinvent the
wheel. It is free and open source, has a thriving and active community, great
documentation, and many options for free and paid-for support. Django can be (and
has been) used to build
almost any type of website � from content management systems and wikis, through to
social networks and news sites. It can work with any client-side framework, and can
deliver content in
almost any format (including HTML, RSS feeds, JSON, XML, etc).

var indexOf = arr.indexOf;


var ObjectFunctionString = fnToString.call( Object );

var support = {};

var isFunction = function isFunction( obj ) {

// Support: Chrome <=57, Firefox <=52


// In some browsers, typeof returns "function" for HTML <object>
elements
// (i.e., `typeof document.createElement( "object" ) === "function"`).
// We don't want to classify *any* DOM node as a function.
// Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5
// Plus for old WebKit, typeof returns "function" for HTML collections
// (e.g., `typeof document.getElementsByTagName("div") ===
"function"`). (gh-4756)
return typeof obj === "function" && typeof obj.nodeType !== "number" &&
typeof obj.item !== "function";
};

var isWindow = function isWindow( obj ) {


return obj != null && obj === obj.window;
};

You might also like